Skip to content

Commit 628a79d

Browse files
committed
[InstCombine] Don't generate crash dialog for fixpoint verification failure (NFC)
Fixpoint verification failures outside our tests are usually not indicative of a bug -- don't be pushy about having people report them.
1 parent 3c227a3 commit 628a79d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/InstCombine/InstructionCombining.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5202,7 +5202,8 @@ static bool combineInstructionsOverFunction(
52025202
if (Iteration > Opts.MaxIterations) {
52035203
report_fatal_error(
52045204
"Instruction Combining did not reach a fixpoint after " +
5205-
Twine(Opts.MaxIterations) + " iterations");
5205+
Twine(Opts.MaxIterations) + " iterations",
5206+
/*GenCrashDiag=*/false);
52065207
}
52075208
}
52085209

0 commit comments

Comments
 (0)