Index: src/ic/ia32/stub-cache-ia32.cc |
diff --git a/src/ic/ia32/stub-cache-ia32.cc b/src/ic/ia32/stub-cache-ia32.cc |
index cb560f12d7840b4db5e5ecd3c513dd577390053a..34b8bdee46f5e7c10512648bd95eaee76b1feef4 100644 |
--- a/src/ic/ia32/stub-cache-ia32.cc |
+++ b/src/ic/ia32/stub-cache-ia32.cc |
@@ -61,8 +61,8 @@ static void ProbeTable(Isolate* isolate, MacroAssembler* masm, |
if (IC::ICUseVector(ic_kind)) { |
// The vector and slot were pushed onto the stack before starting the |
// probe, and need to be dropped before calling the handler. |
- __ pop(VectorLoadICDescriptor::VectorRegister()); |
- __ pop(VectorLoadICDescriptor::SlotRegister()); |
+ __ pop(LoadWithVectorDescriptor::VectorRegister()); |
+ __ pop(LoadDescriptor::SlotRegister()); |
} |
if (leave_frame) __ leave(); |
@@ -112,8 +112,8 @@ static void ProbeTable(Isolate* isolate, MacroAssembler* masm, |
if (IC::ICUseVector(ic_kind)) { |
// The vector and slot were pushed onto the stack before starting the |
// probe, and need to be dropped before calling the handler. |
- Register vector = VectorLoadICDescriptor::VectorRegister(); |
- Register slot = VectorLoadICDescriptor::SlotRegister(); |
+ Register vector = LoadWithVectorDescriptor::VectorRegister(); |
+ Register slot = LoadDescriptor::SlotRegister(); |
DCHECK(!offset.is(vector) && !offset.is(slot)); |
__ pop(vector); |