diff options
author | Owen Anderson <resistor@mac.com> | 2012-11-26 23:54:47 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2012-11-26 23:54:47 +0000 |
commit | 336368c4fd8943aa3d967655d74dc208f5179d6b (patch) | |
tree | 87f69fc2bd391e0a99125310e45694f7dcc643e4 /llvm/tools/bugpoint/CrashDebugger.cpp | |
parent | 8559a35508222875c5a413dd5ef5df82482bf74a (diff) | |
download | bcm5719-llvm-336368c4fd8943aa3d967655d74dc208f5179d6b.tar.gz bcm5719-llvm-336368c4fd8943aa3d967655d74dc208f5179d6b.zip |
Step towards implementation of pass manager with doInitialization and doFinalization per module detangled from runOn?? calls, still has temporary code not to break ASAN to be removed when that pass conforms to the proposed model
Patch by Pedro Artigas, with feedback from by Chandler Carruth.
llvm-svn: 168635
Diffstat (limited to 'llvm/tools/bugpoint/CrashDebugger.cpp')
-rw-r--r-- | llvm/tools/bugpoint/CrashDebugger.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/tools/bugpoint/CrashDebugger.cpp b/llvm/tools/bugpoint/CrashDebugger.cpp index 8836eedb476..aed16f47e01 100644 --- a/llvm/tools/bugpoint/CrashDebugger.cpp +++ b/llvm/tools/bugpoint/CrashDebugger.cpp @@ -412,9 +412,7 @@ bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*> // Verify that this is still valid. PassManager Passes; Passes.add(createVerifierPass()); - Passes.doInitialization(); Passes.run(*M); - Passes.doFinalization(); // Try running on the hacked up program... if (TestFn(BD, M)) { |