mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
Add a missing 'else'. Found by grep '} if'
No testcase because it is apparently not so trivial to construct. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170595 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
afb71e4271
commit
344df79cc0
@ -597,7 +597,7 @@ MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) {
|
||||
++MBBI;
|
||||
if (MBBI == MF->end()) {
|
||||
report("MBB conditionally falls through out of function!", MBB);
|
||||
} if (MBB->succ_size() == 1) {
|
||||
} else if (MBB->succ_size() == 1) {
|
||||
// A conditional branch with only one successor is weird, but allowed.
|
||||
if (&*MBBI != TBB)
|
||||
report("MBB exits via conditional branch/fall-through but only has "
|
||||
|
Loading…
x
Reference in New Issue
Block a user