mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Remove the use of the subtarget in MCCodeEmitter creation and
update all ports accordingly. Required a couple of small rewrites in handling subtarget features during creation in PPC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231861 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -77,8 +77,8 @@ namespace llvm {
|
||||
X86AsmPrinter::StackMapShadowTracker::startFunction(MachineFunction &F) {
|
||||
MF = &F;
|
||||
CodeEmitter.reset(TM.getTarget().createMCCodeEmitter(
|
||||
*MF->getSubtarget().getInstrInfo(), *MF->getSubtarget().getRegisterInfo(),
|
||||
MF->getSubtarget(), MF->getContext()));
|
||||
*MF->getSubtarget().getInstrInfo(),
|
||||
*MF->getSubtarget().getRegisterInfo(), MF->getContext()));
|
||||
}
|
||||
|
||||
void X86AsmPrinter::StackMapShadowTracker::count(MCInst &Inst,
|
||||
|
Reference in New Issue
Block a user