diff options
author | Owen Anderson <resistor@mac.com> | 2008-09-05 20:49:33 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-09-05 20:49:33 +0000 |
commit | ffcc884c7732bb7eb63986abc46c00c28f4079cb (patch) | |
tree | 31602880bf638cefc2e1a96a8337f3794ac1c0e3 /llvm/lib/Target/X86/X86FastISel.cpp | |
parent | d4e01dce74be5549a8b0db9d6ad48d166e47dadc (diff) | |
download | bcm5719-llvm-ffcc884c7732bb7eb63986abc46c00c28f4079cb.tar.gz bcm5719-llvm-ffcc884c7732bb7eb63986abc46c00c28f4079cb.zip |
Rename method.
llvm-svn: 55853
Diffstat (limited to 'llvm/lib/Target/X86/X86FastISel.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86FastISel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86FastISel.cpp b/llvm/lib/Target/X86/X86FastISel.cpp index 37640bb4780..e63120d40e4 100644 --- a/llvm/lib/Target/X86/X86FastISel.cpp +++ b/llvm/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; |