Skip to content

Commit c4bdeab

Browse files
committed
Fix formatting.
1 parent 013790c commit c4bdeab

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang/lib/CodeGen/CGCall.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5399,8 +5399,9 @@ RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
53995399
if (FirstIRArg < IRFuncTy->getNumParams() &&
54005400
V->getType() != IRFuncTy->getParamType(FirstIRArg)) {
54015401
assert(V->getType()->isPointerTy() && "Only pointers can mismatch!");
5402-
auto FormalAS =
5403-
CallInfo.arguments()[ArgNo].type.getQualifiers().getAddressSpace();
5402+
auto FormalAS = CallInfo.arguments()[ArgNo]
5403+
.type.getQualifiers()
5404+
.getAddressSpace();
54045405
auto ActualAS = I->Ty.getAddressSpace();
54055406
V = getTargetHooks().performAddrSpaceCast(
54065407
*this, V, ActualAS, FormalAS, IRFuncTy->getParamType(FirstIRArg));

0 commit comments

Comments
 (0)