mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-03 15:26:18 +00:00
Bugpoint support for miscompilations that result in a crash.
This change allows bugpoint to pinpoint the "opt" pass and bitcode segment responsible for a crash caused by miscompilation. At least it works well for me now, without having to create any custom execution wrappers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131186 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -624,9 +624,10 @@ DebugAMiscompilation(BugDriver &BD,
|
||||
if (!BugpointIsInterrupted)
|
||||
ReduceMiscompilingFunctions(BD, TestFn).reduceList(MiscompiledFunctions,
|
||||
Error);
|
||||
if (!Error.empty())
|
||||
if (!Error.empty()) {
|
||||
errs() << "\n***Cannot reduce functions: ";
|
||||
return MiscompiledFunctions;
|
||||
|
||||
}
|
||||
outs() << "\n*** The following function"
|
||||
<< (MiscompiledFunctions.size() == 1 ? " is" : "s are")
|
||||
<< " being miscompiled: ";
|
||||
|
Reference in New Issue
Block a user