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 b5f5194 commit d6ae380Copy full SHA for d6ae380
clang/lib/CodeGen/CGExpr.cpp
@@ -3585,8 +3585,7 @@ static void emitCheckHandlerCall(CodeGenFunction &CGF,
3585
ClSanitizeDebugDeoptimization ||
3586
!CGF.CGM.getCodeGenOpts().OptimizationLevel ||
3587
(CGF.CurCodeDecl && CGF.CurCodeDecl->hasAttr<OptimizeNoneAttr>());
3588
- // Regular runtime provides a backtrace, making NoMerge a waste of space
3589
- if (NoMerge && MinimalRuntime)
+ if (NoMerge)
3590
HandlerCall->addFnAttr(llvm::Attribute::NoMerge);
3591
if (!MayReturn) {
3592
HandlerCall->setDoesNotReturn();
0 commit comments