diff options
Diffstat (limited to 'lib/Target/X86/X86FastISel.cpp')
-rw-r--r-- | lib/Target/X86/X86FastISel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp index 37640bb..e63120d 100644 --- a/lib/Target/X86/X86FastISel.cpp +++ b/lib/Target/X86/X86FastISel.cpp @@ -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,8 +549,8 @@ X86FastISel::TargetSelectInstruction(Instruction *I) { return false; } -unsigned X86FastISel::TargetSelectConstantPoolLoad(Constant *C, - MachineConstantPool* MCP) { +unsigned X86FastISel::TargetMaterializeConstant(Constant *C, + MachineConstantPool* MCP) { unsigned CPLoad = getRegForValue(C); if (CPLoad != 0) return CPLoad; |