[NFC] Add braces to if-statement in MachineVerifier

This commit is contained in:
Dominik Montada 2020-06-15 16:33:56 +02:00
parent ae33cbc494
commit 87e5742654
1 changed files with 2 additions and 1 deletions

View File

@ -873,10 +873,11 @@ void MachineVerifier::verifyPreISelGenericInstruction(const MachineInstr *MI) {
}
}
if (!HasMBB)
if (!HasMBB) {
report("Branch instruction is missing a basic block operand or "
"isIndirectBranch property",
MI);
}
}
// Check types.