mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Start NextMBBNumber out at zero.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13515 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -87,7 +87,7 @@ FunctionPass *llvm::createMachineCodeDeleter() {
|
|||||||
|
|
||||||
MachineFunction::MachineFunction(const Function *F,
|
MachineFunction::MachineFunction(const Function *F,
|
||||||
const TargetMachine &TM)
|
const TargetMachine &TM)
|
||||||
: Annotation(MF_AID), Fn(F), Target(TM) {
|
: Annotation(MF_AID), Fn(F), Target(TM), NextMBBNumber(0) {
|
||||||
SSARegMapping = new SSARegMap();
|
SSARegMapping = new SSARegMap();
|
||||||
MFInfo = new MachineFunctionInfo(*this);
|
MFInfo = new MachineFunctionInfo(*this);
|
||||||
FrameInfo = new MachineFrameInfo();
|
FrameInfo = new MachineFrameInfo();
|
||||||
|
Reference in New Issue
Block a user