We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4e720f commit da6c678Copy full SHA for da6c678
llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
@@ -4350,6 +4350,9 @@ static bool combineInstructionsOverFunction(
4350
LoopInfo *LI) {
4351
auto &DL = F.getParent()->getDataLayout();
4352
4353
+ if (F.hasSEH() || F.hasCXXSEH())
4354
+ return false;
4355
+
4356
/// Builder - This is an IRBuilder that automatically inserts new
4357
/// instructions into the worklist when they are created.
4358
IRBuilder<TargetFolder, IRBuilderCallbackInserter> Builder(
0 commit comments