Skip to content

Commit e82a363

Browse files
committed
clang-format
1 parent 158bf4e commit e82a363

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clang/lib/CodeGen/CGCall.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1437,14 +1437,16 @@ void CodeGenFunction::CreateCoercedStore(llvm::Value *Src, Address Dst,
14371437
addInstToCurrentSourceAtom(I, Elt);
14381438
}
14391439
} else {
1440-
auto * I = Builder.CreateStore(Src, Dst.withElementType(SrcTy), DstIsVolatile);
1440+
auto *I =
1441+
Builder.CreateStore(Src, Dst.withElementType(SrcTy), DstIsVolatile);
14411442
addInstToCurrentSourceAtom(I, Src);
14421443
}
14431444
} else if (SrcTy->isIntegerTy()) {
14441445
// If the source is a simple integer, coerce it directly.
14451446
llvm::Type *DstIntTy = Builder.getIntNTy(DstSize.getFixedValue() * 8);
14461447
Src = CoerceIntOrPtrToIntOrPtr(Src, DstIntTy, *this);
1447-
auto *I = Builder.CreateStore(Src, Dst.withElementType(DstIntTy), DstIsVolatile);
1448+
auto *I =
1449+
Builder.CreateStore(Src, Dst.withElementType(DstIntTy), DstIsVolatile);
14481450
addInstToCurrentSourceAtom(I, Src);
14491451
} else {
14501452
// Otherwise do coercion through memory. This is stupid, but

0 commit comments

Comments
 (0)