Skip to content

Commit ac24f04

Browse files
committed
Reformat
1 parent 938b664 commit ac24f04

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/CodeGen/CGBuiltin.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,8 @@ static llvm::Value *EmitPositiveResultOrZero(CodeGenFunction &CGF,
10881088
Cmp = CGF.Builder.CreateAnd(CGF.Builder.CreateIsNotNeg(Index), Cmp);
10891089

10901090
// return cmp ? result : 0
1091-
return CGF.Builder.CreateSelect(Cmp, Res, ConstantInt::get(ResType, 0, IsSigned));
1091+
return CGF.Builder.CreateSelect(Cmp, Res,
1092+
ConstantInt::get(ResType, 0, IsSigned));
10921093
}
10931094

10941095
static std::pair<llvm::Value *, llvm::Value *>

0 commit comments

Comments
 (0)