mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
class MachineCodeForBasicBlock is now an annotation on BasicBlock.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b2debdc5a9
commit
0b04064054
@ -12,6 +12,7 @@
|
||||
#include "SparcInternals.h"
|
||||
#include "SparcRegClassInfo.h"
|
||||
#include "llvm/CodeGen/MachineCodeForMethod.h"
|
||||
#include "llvm/CodeGen/MachineCodeForBasicBlock.h"
|
||||
#include "llvm/CodeGen/MachineCodeForInstruction.h"
|
||||
#include "llvm/CodeGen/MachineInstr.h"
|
||||
#include "llvm/Pass.h"
|
||||
@ -101,7 +102,7 @@ void InsertPrologEpilogCode::InsertPrologCode(Function &F)
|
||||
mvec.push_back(M);
|
||||
}
|
||||
|
||||
MachineCodeForBasicBlock& bbMvec = F.getEntryNode().getMachineInstrVec();
|
||||
MachineCodeForBasicBlock& bbMvec = MachineCodeForBasicBlock::get(&F.getEntryNode());
|
||||
bbMvec.insert(bbMvec.begin(), mvec.begin(), mvec.end());
|
||||
}
|
||||
|
||||
@ -117,7 +118,7 @@ void InsertPrologEpilogCode::InsertEpilogCode(Function &F)
|
||||
(int64_t)0);
|
||||
Restore->SetMachineOperandReg(2, Target.getRegInfo().getZeroRegNum());
|
||||
|
||||
MachineCodeForBasicBlock& bbMvec = I->getMachineInstrVec();
|
||||
MachineCodeForBasicBlock& bbMvec = MachineCodeForBasicBlock::get(I);
|
||||
MachineCodeForInstruction &termMvec =
|
||||
MachineCodeForInstruction::get(TermInst);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user