Skip to content

Commit 3911865

Browse files
committed
git clang format
1 parent c10cfb3 commit 3911865

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/CodeGen/MachineVerifier.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,8 @@ void MachineVerifier::verifyPreISelGenericInstruction(const MachineInstr *MI) {
11911191
if (MMO.getSizeInBits() >= ValTy.getSizeInBits())
11921192
report("Generic extload must have a narrower memory type", MI);
11931193
} else if (MI->getOpcode() == TargetOpcode::G_LOAD) {
1194-
if (TypeSize::isKnownGT(MMO.getType().getSizeInBytes(), ValTy.getSizeInBytes()))
1194+
if (TypeSize::isKnownGT(MMO.getType().getSizeInBytes(),
1195+
ValTy.getSizeInBytes()))
11951196
report("load memory size cannot exceed result size", MI);
11961197
} else if (MI->getOpcode() == TargetOpcode::G_STORE) {
11971198
if (ValTy.getSizeInBytes() < MMO.getSize())

0 commit comments

Comments
 (0)