| Index: src/ia32/stub-cache-ia32.cc
|
| diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc
|
| index ca6a5bbb31ddadb10bfe903ead7aee7cd57cfb3d..bf4d04a349d1b41a3f44bc4ffd453f2b9559a203 100644
|
| --- a/src/ia32/stub-cache-ia32.cc
|
| +++ b/src/ia32/stub-cache-ia32.cc
|
| @@ -1292,8 +1292,8 @@ Register* LoadStubCompiler::registers() {
|
|
|
| Register* KeyedLoadStubCompiler::registers() {
|
| // receiver, name, scratch1, scratch2, scratch3, scratch4.
|
| - Register receiver = KeyedLoadIC::ReceiverRegister();
|
| - Register name = KeyedLoadIC::NameRegister();
|
| + Register receiver = LoadIC::ReceiverRegister();
|
| + Register name = LoadIC::NameRegister();
|
| static Register registers[] = { receiver, name, ebx, eax, edi, no_reg };
|
| return registers;
|
| }
|
| @@ -1454,8 +1454,8 @@ void KeyedLoadStubCompiler::GenerateLoadDictionaryElement(
|
| // -- edx : receiver
|
| // -- esp[0] : return address
|
| // -----------------------------------
|
| - ASSERT(edx.is(KeyedLoadIC::ReceiverRegister()));
|
| - ASSERT(ecx.is(KeyedLoadIC::NameRegister()));
|
| + ASSERT(edx.is(LoadIC::ReceiverRegister()));
|
| + ASSERT(ecx.is(LoadIC::NameRegister()));
|
| Label slow, miss;
|
|
|
| // This stub is meant to be tail-jumped to, the receiver must already
|
|
|