| Index: test/mjsunit/smi-ops-inlined.js
|
| diff --git a/test/mjsunit/smi-ops-inlined.js b/test/mjsunit/smi-ops-inlined.js
|
| index afc6cc0765553a253b1de4868023d0de54975cff..595aef92f970f1f848ab12fcee1505ca8a026958 100644
|
| --- a/test/mjsunit/smi-ops-inlined.js
|
| +++ b/test/mjsunit/smi-ops-inlined.js
|
| @@ -228,7 +228,7 @@ assertFalse(v != v);
|
| assertFalse(v !== v);
|
|
|
| // Right hand side of unary minus is overwritable.
|
| -v = 1.5
|
| +v = 1.5;
|
| assertEquals(-2.25, -(v * v));
|
|
|
| // Smi input to bitop gives non-smi result where the rhs is a float that
|
| @@ -240,9 +240,9 @@ assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<1(1)");
|
|
|
| // Smi input to bitop gives non-smi result where the rhs could be overwritten
|
| // if it were a float, but it isn't.
|
| -x1 = 0x10000000
|
| -x2 = 4
|
| -x3 = 2
|
| +x1 = 0x10000000;
|
| +x2 = 4;
|
| +x3 = 2;
|
| assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<2(2)");
|
|
|
|
|
|
|