1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[NFC] Add braces to if-statement in MachineVerifier

This commit is contained in:
Dominik Montada 2020-06-15 16:33:56 +02:00
parent 085e5b1dfa
commit c141103726

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.