mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Rename method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55853 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7f132122c8
commit
9c7216f984
@ -227,7 +227,9 @@ protected:
|
||||
|
||||
unsigned createResultReg(const TargetRegisterClass *RC);
|
||||
|
||||
virtual unsigned TargetSelectConstantPoolLoad(Constant* C,
|
||||
/// TargetMaterializeConstant - Emit a constant in a register using
|
||||
/// target-specific logic, such as constant pool loads.
|
||||
virtual unsigned TargetMaterializeConstant(Constant* C,
|
||||
MachineConstantPool* MCP) {
|
||||
return 0;
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ private:
|
||||
|
||||
bool X86SelectSelect(Instruction *I);
|
||||
|
||||
unsigned TargetSelectConstantPoolLoad(Constant *C, MachineConstantPool* MCP);
|
||||
unsigned TargetMaterializeConstant(Constant *C, MachineConstantPool* MCP);
|
||||
};
|
||||
|
||||
/// X86SelectConstAddr - Select and emit code to materialize constant address.
|
||||
@ -549,7 +549,7 @@ X86FastISel::TargetSelectInstruction(Instruction *I) {
|
||||
return false;
|
||||
}
|
||||
|
||||
unsigned X86FastISel::TargetSelectConstantPoolLoad(Constant *C,
|
||||
unsigned X86FastISel::TargetMaterializeConstant(Constant *C,
|
||||
MachineConstantPool* MCP) {
|
||||
unsigned CPLoad = getRegForValue(C);
|
||||
if (CPLoad != 0)
|
||||
|
Loading…
Reference in New Issue
Block a user