mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-01 09:18:30 +00:00
Fix loop end condition.
Note: This code appears to be untested. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214416 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b74ca14f1c
commit
5dbbe4adbe
@ -450,7 +450,7 @@ MCBasicBlock *MCObjectDisassembler::getBBAt(MCModule *Module, MCFunction *MCFN,
|
||||
RemoveDupsFromAddressVector(BBI->SuccAddrs);
|
||||
for (AddressSetTy::const_iterator SI = BBI->SuccAddrs.begin(),
|
||||
SE = BBI->SuccAddrs.end();
|
||||
SE != SE; ++SI) {
|
||||
SI != SE; ++SI) {
|
||||
MCBasicBlock *Succ = BBInfos[*SI].BB;
|
||||
BB->addSuccessor(Succ);
|
||||
Succ->addPredecessor(BB);
|
||||
|
Loading…
Reference in New Issue
Block a user