about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/klee/Internal/Module/LLVMPassManager.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/klee/Internal/Module/LLVMPassManager.h b/include/klee/Internal/Module/LLVMPassManager.h
deleted file mode 100644
index 5a1b8927..00000000
--- a/include/klee/Internal/Module/LLVMPassManager.h
+++ /dev/null
@@ -1,22 +0,0 @@
-//===-- InstructionInfoTable.h ----------------------------------*- C++ -*-===//
-//
-//                     The KLEE Symbolic Virtual Machine
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 7)
-#include "llvm/IR/LegacyPassManager.h"
-#else
-#include "llvm/PassManager.h"
-#endif
-
-namespace klee {
-#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 7)
-typedef llvm::legacy::PassManager LegacyLLVMPassManagerTy;
-#else
-typedef llvm::PassManager LegacyLLVMPassManagerTy;
-#endif
-}