mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 15:17:25 +00:00
Fix naming inconsistency.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32823 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -151,8 +151,8 @@ void AlphaRegisterInfo::copyRegToReg(MachineBasicBlock &MBB,
|
||||
}
|
||||
}
|
||||
|
||||
const unsigned* AlphaRegisterInfo::getCalleeSaveRegs() const {
|
||||
static const unsigned CalleeSaveRegs[] = {
|
||||
const unsigned* AlphaRegisterInfo::getCalleeSavedRegs() const {
|
||||
static const unsigned CalleeSavedRegs[] = {
|
||||
Alpha::R9, Alpha::R10,
|
||||
Alpha::R11, Alpha::R12,
|
||||
Alpha::R13, Alpha::R14,
|
||||
@@ -161,12 +161,12 @@ const unsigned* AlphaRegisterInfo::getCalleeSaveRegs() const {
|
||||
Alpha::F6, Alpha::F7,
|
||||
Alpha::F8, Alpha::F9, 0
|
||||
};
|
||||
return CalleeSaveRegs;
|
||||
return CalleeSavedRegs;
|
||||
}
|
||||
|
||||
const TargetRegisterClass* const*
|
||||
AlphaRegisterInfo::getCalleeSaveRegClasses() const {
|
||||
static const TargetRegisterClass * const CalleeSaveRegClasses[] = {
|
||||
AlphaRegisterInfo::getCalleeSavedRegClasses() const {
|
||||
static const TargetRegisterClass * const CalleeSavedRegClasses[] = {
|
||||
&Alpha::GPRCRegClass, &Alpha::GPRCRegClass,
|
||||
&Alpha::GPRCRegClass, &Alpha::GPRCRegClass,
|
||||
&Alpha::GPRCRegClass, &Alpha::GPRCRegClass,
|
||||
@@ -175,7 +175,7 @@ AlphaRegisterInfo::getCalleeSaveRegClasses() const {
|
||||
&Alpha::F8RCRegClass, &Alpha::F8RCRegClass,
|
||||
&Alpha::F8RCRegClass, &Alpha::F8RCRegClass, 0
|
||||
};
|
||||
return CalleeSaveRegClasses;
|
||||
return CalleeSavedRegClasses;
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
Reference in New Issue
Block a user