Skip to content

Commit 358fe91

Browse files
committed
Fix formatting
1 parent 34d7139 commit 358fe91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/lib/CIR/CodeGen/CIRGenClass.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ static void emitMemberInitializer(CIRGenFunction &cgf,
8989

9090
// If a base constructor is being emitted, create an LValue that has the
9191
// non-virtual alignment.
92-
LValue lhs = (cgf.curGD.getCtorType() == Ctor_Base) ?
93-
cgf.makeNaturalAlignPointeeAddrLValue(thisPtr, recordTy) :
94-
cgf.makeNaturalAlignAddrLValue(thisPtr, recordTy);
92+
LValue lhs = (cgf.curGD.getCtorType() == Ctor_Base)
93+
? cgf.makeNaturalAlignPointeeAddrLValue(thisPtr, recordTy)
94+
: cgf.makeNaturalAlignAddrLValue(thisPtr, recordTy);
9595

9696
emitLValueForAnyFieldInitialization(cgf, memberInit, lhs);
9797

0 commit comments

Comments
 (0)