| Index: src/ic-ia32.cc
|
| ===================================================================
|
| --- src/ic-ia32.cc (revision 746)
|
| +++ src/ic-ia32.cc (working copy)
|
| @@ -538,17 +538,17 @@
|
| __ EnterInternalFrame();
|
|
|
| // Push the receiver and the name of the function.
|
| - __ push(Operand(edx));
|
| - __ push(Operand(ebx));
|
| + __ push(edx);
|
| + __ push(ebx);
|
|
|
| // Call the entry.
|
| CEntryStub stub;
|
| - __ mov(Operand(eax), Immediate(2));
|
| - __ mov(Operand(ebx), Immediate(f));
|
| + __ mov(eax, Immediate(2));
|
| + __ mov(ebx, Immediate(f));
|
| __ CallStub(&stub);
|
|
|
| // Move result to edi and exit the internal frame.
|
| - __ mov(Operand(edi), eax);
|
| + __ mov(edi, eax);
|
| __ LeaveInternalFrame();
|
|
|
| // Check if the receiver is a global object of some sort.
|
|
|