diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2010-06-24 22:12:38 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2010-06-24 22:12:38 +0000 |
commit | e09eb2876e8bae2a683f40dc338537b08298cc99 (patch) | |
tree | 31ae3d8e952ac5ef677f77238bcf21571133b009 /lib | |
parent | f30b81ca62bd8f6f1057c52e291620af134f9b8e (diff) | |
download | klee-e09eb2876e8bae2a683f40dc338537b08298cc99.tar.gz |
Remove llvm.dbg.value intrinsic new to LLVM 2.7
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@106802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Module/IntrinsicCleaner.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Module/IntrinsicCleaner.cpp b/lib/Module/IntrinsicCleaner.cpp index 5898e89d..540ee0d3 100644 --- a/lib/Module/IntrinsicCleaner.cpp +++ b/lib/Module/IntrinsicCleaner.cpp @@ -122,6 +122,8 @@ bool IntrinsicCleanerPass::runOnBasicBlock(BasicBlock &b) { case Intrinsic::dbg_region_start: case Intrinsic::dbg_region_end: case Intrinsic::dbg_func_start: +#else + case Intrinsic::dbg_value: #endif case Intrinsic::dbg_declare: // Remove these regardless of lower intrinsics flag. This can |