Skip to content

Commit 8feef30

Browse files
committed
clang-format
1 parent 936a510 commit 8feef30

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang/lib/CodeGen/CGExpr.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)