Rename method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55853 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@
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 @@
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;