forked from OSchip/llvm-project
[NFC] Add braces to if-statement in MachineVerifier
This commit is contained in:
parent
ae33cbc494
commit
87e5742654
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue