diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2019-03-20 21:27:46 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-21 12:46:01 +0000 |
commit | 0c1acd51e99968cc79863b714b4ebc89588a4c00 (patch) | |
tree | 2762086d9ba74b8ca45876ad3377c507681bda07 /include | |
parent | 539323d70215d0248303078f9c400a88dfeb8012 (diff) | |
download | klee-0c1acd51e99968cc79863b714b4ebc89588a4c00.tar.gz |
remove obsolete LegacyLLVMPassManagerTy
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Internal/Module/LLVMPassManager.h | 22 |
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 -} |