mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-24 08:18:33 +00:00
Code insertion methods now return void instead of #instrs inserted
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15781 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -20,26 +20,23 @@ SkeletonRegisterInfo::SkeletonRegisterInfo()
|
||||
: SkeletonGenRegisterInfo(Skeleton::ADJCALLSTACKDOWN,
|
||||
Skeleton::ADJCALLSTACKUP) {}
|
||||
|
||||
int SkeletonRegisterInfo::
|
||||
void SkeletonRegisterInfo::
|
||||
storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
|
||||
unsigned SrcReg, int FrameIdx) const {
|
||||
abort();
|
||||
return -1;
|
||||
}
|
||||
|
||||
int SkeletonRegisterInfo::
|
||||
void SkeletonRegisterInfo::
|
||||
loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
|
||||
unsigned DestReg, int FrameIdx) const {
|
||||
abort();
|
||||
return -1;
|
||||
}
|
||||
|
||||
int SkeletonRegisterInfo::copyRegToReg(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MBBI,
|
||||
unsigned DestReg, unsigned SrcReg,
|
||||
const TargetRegisterClass *RC) const {
|
||||
void SkeletonRegisterInfo::copyRegToReg(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MBBI,
|
||||
unsigned DestReg, unsigned SrcReg,
|
||||
const TargetRegisterClass *RC) const {
|
||||
abort();
|
||||
return -1;
|
||||
}
|
||||
|
||||
void SkeletonRegisterInfo::
|
||||
|
||||
Reference in New Issue
Block a user