Index: src/x87/ic-x87.cc |
diff --git a/src/x87/ic-x87.cc b/src/x87/ic-x87.cc |
index a8c8654b97cf7fce0965ef2d843901e8e6c902d8..828e3f97354e745d6122c72a268f368cf3a226dd 100644 |
--- a/src/x87/ic-x87.cc |
+++ b/src/x87/ic-x87.cc |
@@ -1132,12 +1132,11 @@ void StoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm, |
__ push(edx); |
__ push(ecx); |
__ push(eax); |
- __ push(Immediate(Smi::FromInt(NONE))); // PropertyAttributes |
__ push(Immediate(Smi::FromInt(strict_mode))); |
__ push(ebx); // return address |
// Do tail-call to runtime routine. |
- __ TailCallRuntime(Runtime::kSetProperty, 5, 1); |
+ __ TailCallRuntime(Runtime::kSetProperty, 4, 1); |
} |
@@ -1154,12 +1153,11 @@ void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm, |
__ push(edx); |
__ push(ecx); |
__ push(eax); |
- __ push(Immediate(Smi::FromInt(NONE))); // PropertyAttributes |
__ push(Immediate(Smi::FromInt(strict_mode))); // Strict mode. |
__ push(ebx); // return address |
// Do tail-call to runtime routine. |
- __ TailCallRuntime(Runtime::kSetProperty, 5, 1); |
+ __ TailCallRuntime(Runtime::kSetProperty, 4, 1); |
} |