Index: src/x87/builtins-x87.cc |
diff --git a/src/x87/builtins-x87.cc b/src/x87/builtins-x87.cc |
index f7feaffbf82c62e6cb4bf57954ba6238f9a61fe5..94ec194d9076171d1430e2734d60525af4c254ad 100644 |
--- a/src/x87/builtins-x87.cc |
+++ b/src/x87/builtins-x87.cc |
@@ -994,8 +994,8 @@ void Builtins::Generate_FunctionApply(MacroAssembler* masm) { |
// Copy all arguments from the array to the stack. |
Label entry, loop; |
- Register receiver = LoadIC::ReceiverRegister(); |
- Register key = LoadIC::NameRegister(); |
+ Register receiver = LoadConvention::ReceiverRegister(); |
+ Register key = LoadConvention::NameRegister(); |
__ mov(key, Operand(ebp, kIndexOffset)); |
__ jmp(&entry); |
__ bind(&loop); |
@@ -1003,7 +1003,7 @@ void Builtins::Generate_FunctionApply(MacroAssembler* masm) { |
// Use inline caching to speed up access to arguments. |
if (FLAG_vector_ics) { |
- __ mov(LoadIC::SlotRegister(), Immediate(Smi::FromInt(0))); |
+ __ mov(VectorLoadConvention::SlotRegister(), Immediate(Smi::FromInt(0))); |
} |
Handle<Code> ic = masm->isolate()->builtins()->KeyedLoadIC_Initialize(); |
__ call(ic, RelocInfo::CODE_TARGET); |