Skip to content

Commit 82588c3

Browse files
committed
Format
1 parent b503de0 commit 82588c3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clang/lib/CodeGen/CGBuiltin.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -898,8 +898,7 @@ CodeGenFunction::emitBuiltinObjectSize(const Expr *E, unsigned Type,
898898
CharUnits Size =
899899
getContext().getTypeSizeInChars(ArrayTy->getElementType());
900900
llvm::Constant *ArraySize =
901-
llvm::ConstantInt::get(CountedByInstr->getType(),
902-
Size.getQuantity());
901+
llvm::ConstantInt::get(CountedByInstr->getType(), Size.getQuantity());
903902

904903
llvm::Value *ObjectSize = Builder.CreateMul(CountedByInstr, ArraySize);
905904
ObjectSize = Builder.CreateZExtOrTrunc(ObjectSize, ResType);

0 commit comments

Comments
 (0)