Chromium Code Reviews| Index: src/arm/code-stubs-arm.cc |
| =================================================================== |
| --- src/arm/code-stubs-arm.cc (revision 5865) |
| +++ src/arm/code-stubs-arm.cc (working copy) |
| @@ -100,8 +100,9 @@ |
| // Create a new closure through the slower runtime call. |
| __ bind(&gc); |
| - __ Push(cp, r3); |
| - __ TailCallRuntime(Runtime::kNewClosure, 2, 1); |
| + __ LoadRoot(r4, Heap::kFalseValueRootIndex); |
| + __ Push(cp, r3, r4); |
| + __ TailCallRuntime(Runtime::kNewClosure, 3, 1); |
| } |