Skip to content

Commit 97ee528

Browse files
committed
clang format
1 parent 4580537 commit 97ee528

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

llvm/lib/CodeGen/MachineOperand.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1240,7 +1240,9 @@ void MachineMemOperand::print(raw_ostream &OS, ModuleSlotTracker &MST,
12401240
<< "unknown-address";
12411241
}
12421242
MachineOperand::printOperandOffset(OS, getOffset());
1243-
uint64_t MinSize = MemoryType.isValid() ? getType().getSizeInBytes().getKnownMinValue() : ~UINT64_C(0);
1243+
uint64_t MinSize = MemoryType.isValid()
1244+
? getType().getSizeInBytes().getKnownMinValue()
1245+
: ~UINT64_C(0);
12441246
// TODO: getSize should return TypeSize
12451247
if (MinSize > 0 && getAlign() != MinSize)
12461248
OS << ", align " << getAlign().value();

0 commit comments

Comments
 (0)