diff --git a/llvm/tools/bugpoint/Miscompilation.cpp b/llvm/tools/bugpoint/Miscompilation.cpp index 6ef9fc26c11d..95d24e96a58d 100644 --- a/llvm/tools/bugpoint/Miscompilation.cpp +++ b/llvm/tools/bugpoint/Miscompilation.cpp @@ -35,7 +35,7 @@ ReduceMiscompilingPasses::doTest(std::vector &Prefix, << " on the input program!\n"; BD.setPassesToRun(Suffix); BD.EmitProgressBytecode("pass-error", false); - exit(1); + exit(BD.debugCrash()); } // Check to see if the finished program matches the reference output... @@ -63,7 +63,7 @@ ReduceMiscompilingPasses::doTest(std::vector &Prefix, << " on the input program!\n"; BD.setPassesToRun(Prefix); BD.EmitProgressBytecode("pass-error", false); - exit(1); + exit(BD.debugCrash()); } // If the prefix maintains the predicate by itself, only keep the prefix! @@ -96,7 +96,7 @@ ReduceMiscompilingPasses::doTest(std::vector &Prefix, << " on the input program!\n"; BD.setPassesToRun(Suffix); BD.EmitProgressBytecode("pass-error", false); - exit(1); + exit(BD.debugCrash()); } // Run the result... @@ -210,7 +210,7 @@ bool ReduceMiscompilingFunctions::TestFuncs(const std::vector &Funcs, std::cerr << " Error running this sequence of passes" << " on the input program!\n"; BD.EmitProgressBytecode("pass-error", false); - exit(1); + exit(BD.debugCrash()); } if (!EmitBytecode)