Skip to content

Commit 93ef358

Browse files
committed
Unnecessary braces
1 parent 4041270 commit 93ef358

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clang/lib/CodeGen/CGExprScalar.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4762,9 +4762,8 @@ Value *ScalarExprEmitter::EmitShl(const BinOpInfo &Ops) {
47624762
Kinds.push_back(SanitizerKind::SO_ShiftBase);
47634763
if (SanitizeUnsignedBase)
47644764
Kinds.push_back(SanitizerKind::SO_UnsignedShiftBase);
4765-
if (SanitizeExponent) {
4765+
if (SanitizeExponent)
47664766
Kinds.push_back(SanitizerKind::SO_ShiftExponent);
4767-
}
47684767

47694768
CodeGenFunction::SanitizerScope SanScope(&CGF, Kinds);
47704769
SmallVector<std::pair<Value *, SanitizerKind::SanitizerOrdinal>, 2> Checks;

0 commit comments

Comments
 (0)