about summary refs log tree commit diff homepage
path: root/lib/Module/Passes.h
diff options
context:
space:
mode:
authorLei Zhang <antiAgainst@gmail.com>2013-09-04 17:38:12 -0400
committerLei Zhang <antiAgainst@gmail.com>2013-09-23 16:57:21 -0400
commitfc29e256039d1af4979fd0a5c7170de84b19818b (patch)
tree962e05f3c908ef7584836c668576b274d027d8c2 /lib/Module/Passes.h
parent95521073b1a6c0eec2719a4c355c83506b325693 (diff)
downloadklee-fc29e256039d1af4979fd0a5c7170de84b19818b.tar.gz
Lower intrinsic instruction "llvm.trap" to a call of the abort() function.
Diffstat (limited to 'lib/Module/Passes.h')
-rw-r--r--lib/Module/Passes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Module/Passes.h b/lib/Module/Passes.h
index ebe89b2b..d83e57ec 100644
--- a/lib/Module/Passes.h
+++ b/lib/Module/Passes.h
@@ -82,7 +82,7 @@ class IntrinsicCleanerPass : public llvm::ModulePass {
   llvm::IntrinsicLowering *IL;
   bool LowerIntrinsics;
 
-  bool runOnBasicBlock(llvm::BasicBlock &b);
+  bool runOnBasicBlock(llvm::BasicBlock &b, llvm::Module &M);
 public:
 #if LLVM_VERSION_CODE <= LLVM_VERSION(3, 1)
   IntrinsicCleanerPass(const llvm::TargetData &TD,