mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-16 00:33:10 +00:00
Make isScratchReg and isFPCopy methods static.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168407 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8b4310b806
commit
6f05f21857
@ -206,7 +206,7 @@ namespace {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// isScratchReg - Returns trus if RegNo is a scratch FP register.
|
/// isScratchReg - Returns trus if RegNo is a scratch FP register.
|
||||||
bool isScratchReg(unsigned RegNo) const {
|
static bool isScratchReg(unsigned RegNo) {
|
||||||
return RegNo > 8 && RegNo < NumFPRegs;
|
return RegNo > 8 && RegNo < NumFPRegs;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -311,7 +311,7 @@ namespace {
|
|||||||
void handleSpecialFP(MachineBasicBlock::iterator &I);
|
void handleSpecialFP(MachineBasicBlock::iterator &I);
|
||||||
|
|
||||||
// Check if a COPY instruction is using FP registers.
|
// Check if a COPY instruction is using FP registers.
|
||||||
bool isFPCopy(MachineInstr *MI) const {
|
static bool isFPCopy(MachineInstr *MI) {
|
||||||
unsigned DstReg = MI->getOperand(0).getReg();
|
unsigned DstReg = MI->getOperand(0).getReg();
|
||||||
unsigned SrcReg = MI->getOperand(1).getReg();
|
unsigned SrcReg = MI->getOperand(1).getReg();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user