Skip to content

Commit d25206a

Browse files
committed
Fix formatting
1 parent de25cce commit d25206a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

clang/include/clang/Driver/Options.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2537,7 +2537,7 @@ def fsanitize_annotate_debug_info_EQ
25372537
: CommaJoined<["-"], "fsanitize-annotate-debug-info=">,
25382538
Group<f_clang_Group>,
25392539
HelpText<"Annotate sanitizer instrumentation with extra debug info for "
2540-
the specified sanitizers, if supported">;
2540+
"the specified sanitizers, if supported">;
25412541
def fno_sanitize_annotate_debug_info_EQ
25422542
: CommaJoined<["-"], "fno-sanitize-annotate-debug-info=">,
25432543
Group<f_clang_Group>,

clang/lib/CodeGen/CGExpr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,8 +1249,8 @@ void CodeGenFunction::EmitBoundsCheckImpl(const Expr *E, llvm::Value *Bound,
12491249
};
12501250
llvm::Value *Check = Accessed ? Builder.CreateICmpULT(IndexVal, BoundVal)
12511251
: Builder.CreateICmpULE(IndexVal, BoundVal);
1252-
EmitCheck(std::make_pair(Check, CheckKind),
1253-
SanitizerHandler::OutOfBounds, StaticData, Index);
1252+
EmitCheck(std::make_pair(Check, CheckKind), SanitizerHandler::OutOfBounds,
1253+
StaticData, Index);
12541254
}
12551255

12561256
CodeGenFunction::ComplexPairTy CodeGenFunction::

0 commit comments

Comments
 (0)