| Index: src/arm/macro-assembler-arm.cc
|
| ===================================================================
|
| --- src/arm/macro-assembler-arm.cc (revision 4955)
|
| +++ src/arm/macro-assembler-arm.cc (working copy)
|
| @@ -614,7 +614,8 @@
|
| }
|
|
|
| Handle<Code> adaptor =
|
| - Handle<Code>(Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline));
|
| + Handle<Code>(Isolate::Current()->builtins()->builtin(
|
| + Builtins::ArgumentsAdaptorTrampoline));
|
| if (flag == CALL_FUNCTION) {
|
| Call(adaptor, RelocInfo::CODE_TARGET);
|
| b(done);
|
| @@ -1368,7 +1369,8 @@
|
| }
|
|
|
|
|
| -void MacroAssembler::CallRuntime(Runtime::Function* f, int num_arguments) {
|
| +void MacroAssembler::CallRuntime(const Runtime::Function* f,
|
| + int num_arguments) {
|
| // All parameters are on the stack. r0 has the return value after call.
|
|
|
| // If the expected number of arguments of the runtime function is
|
|
|