File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3890,7 +3890,8 @@ void CodeGenFunction::EmitCfiCheckFail() {
38903890 // TODO: since there is no data, we don't know the CheckKind, and therefore
38913891 // cannot inspect CGM.getCodeGenOpts().SanitizeMergeHandlers. We default to
38923892 // NoMerge = false. Users can disable merging by disabling optimization.
3893- EmitTrapCheck (DataIsNotNullPtr, SanitizerHandler::CFICheckFail, /* NoMerge=*/ false );
3893+ EmitTrapCheck (DataIsNotNullPtr, SanitizerHandler::CFICheckFail,
3894+ /* NoMerge=*/ false );
38943895
38953896 llvm::StructType *SourceLocationTy =
38963897 llvm::StructType::get (VoidPtrTy, Int32Ty, Int32Ty);
@@ -3933,7 +3934,7 @@ void CodeGenFunction::EmitCfiCheckFail() {
39333934 // Although the compiler allows SanitizeMergeHandlers to be set
39343935 // independently of CGM.getLangOpts().Sanitize, Driver/SanitizerArgs.cpp
39353936 // requires that SanitizeMergeHandlers is a subset of Sanitize.
3936- EmitTrapCheck (Cond, SanitizerHandler::CFICheckFail, /* NoMerge=*/ false );
3937+ EmitTrapCheck (Cond, SanitizerHandler::CFICheckFail, /* NoMerge=*/ false );
39373938 }
39383939
39393940 FinishFunction ();
You can’t perform that action at this time.
0 commit comments