| Index: src/arm/builtins-arm.cc
|
| ===================================================================
|
| --- src/arm/builtins-arm.cc (revision 6955)
|
| +++ src/arm/builtins-arm.cc (working copy)
|
| @@ -190,7 +190,7 @@
|
|
|
| // Check whether an empty sized array is requested.
|
| __ tst(array_size, array_size);
|
| - __ b(nz, ¬_empty);
|
| + __ b(ne, ¬_empty);
|
|
|
| // If an empty array is requested allocate a small elements array anyway. This
|
| // keeps the code below free of special casing for the empty array.
|
| @@ -568,7 +568,7 @@
|
| // if it's a string already before calling the conversion builtin.
|
| Label convert_argument;
|
| __ bind(¬_cached);
|
| - __ BranchOnSmi(r0, &convert_argument);
|
| + __ JumpIfSmi(r0, &convert_argument);
|
|
|
| // Is it a String?
|
| __ ldr(r2, FieldMemOperand(r0, HeapObject::kMapOffset));
|
| @@ -668,7 +668,7 @@
|
| __ mov(r2, Operand(debug_step_in_fp));
|
| __ ldr(r2, MemOperand(r2));
|
| __ tst(r2, r2);
|
| - __ b(nz, &rt_call);
|
| + __ b(ne, &rt_call);
|
| #endif
|
|
|
| // Load the initial map and verify that it is in fact a map.
|
|
|