| Index: src/ia32/builtins-ia32.cc
|
| diff --git a/src/ia32/builtins-ia32.cc b/src/ia32/builtins-ia32.cc
|
| index 12125666ef848bd54bdf90a629be6e08a2ab522c..d0b563e9af4d6181ee2a0d828b20870203f24903 100644
|
| --- a/src/ia32/builtins-ia32.cc
|
| +++ b/src/ia32/builtins-ia32.cc
|
| @@ -615,8 +615,8 @@ void Builtins::Generate_FunctionCall(MacroAssembler* masm) {
|
| __ j(not_equal, &shift_arguments);
|
|
|
| // Do not transform the receiver for natives (shared already in ebx).
|
| - __ test_b(FieldOperand(ebx, SharedFunctionInfo::kES5NativeByteOffset),
|
| - 1 << SharedFunctionInfo::kES5NativeBitWithinByte);
|
| + __ test_b(FieldOperand(ebx, SharedFunctionInfo::kNativeByteOffset),
|
| + 1 << SharedFunctionInfo::kNativeBitWithinByte);
|
| __ j(not_equal, &shift_arguments);
|
|
|
| // Compute the receiver in non-strict mode.
|
| @@ -780,8 +780,8 @@ void Builtins::Generate_FunctionApply(MacroAssembler* masm) {
|
| Factory* factory = masm->isolate()->factory();
|
|
|
| // Do not transform the receiver for natives (shared already in ecx).
|
| - __ test_b(FieldOperand(ecx, SharedFunctionInfo::kES5NativeByteOffset),
|
| - 1 << SharedFunctionInfo::kES5NativeBitWithinByte);
|
| + __ test_b(FieldOperand(ecx, SharedFunctionInfo::kNativeByteOffset),
|
| + 1 << SharedFunctionInfo::kNativeBitWithinByte);
|
| __ j(not_equal, &push_receiver);
|
|
|
| // Compute the receiver in non-strict mode.
|
|
|