mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
Bugfixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30709 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ee773ba72b
commit
f28bbda2c6
@ -25,9 +25,10 @@
|
||||
#include "llvm/Target/TargetFrameInfo.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/Instructions.h"
|
||||
#include "llvm/Support/LeakDetector.h"
|
||||
#include "llvm/Support/GraphWriter.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/GraphWriter.h"
|
||||
#include "llvm/Support/LeakDetector.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/Config/config.h"
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
@ -148,11 +149,8 @@ void MachineFunction::RenumberBlocks(MachineBasicBlock *MBB) {
|
||||
|
||||
// Figure out the block number this should have.
|
||||
unsigned BlockNo = 0;
|
||||
if (MBB != &front()) {
|
||||
MachineFunction::iterator I = MBB;
|
||||
--I;
|
||||
BlockNo = I->getNumber()+1;
|
||||
}
|
||||
if (MBBI != begin())
|
||||
BlockNo = prior(MBBI)->getNumber()+1;
|
||||
|
||||
for (; MBBI != E; ++MBBI, ++BlockNo) {
|
||||
if (MBBI->getNumber() != (int)BlockNo) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user