| Index: test/mjsunit/compiler/compare.js
|
| diff --git a/test/mjsunit/compiler/compare.js b/test/mjsunit/compiler/compare.js
|
| index 460b0ab003c96404319ab9abf97ca007dc63cdfd..cc00b42784554999974bb826e1e7e1717d9f8d2c 100644
|
| --- a/test/mjsunit/compiler/compare.js
|
| +++ b/test/mjsunit/compiler/compare.js
|
| @@ -59,7 +59,7 @@ TestPrimitive(1, 1, 0);
|
| TestPrimitive(4, 3, 4);
|
| TestPrimitive(4, 4, 3);
|
| TestPrimitive(0, -1, 0);
|
| -TestPrimitive(0, 0, -1)
|
| +TestPrimitive(0, 0, -1);
|
| TestPrimitive(-2, -2, -3);
|
| TestPrimitive(-2, -3, -2);
|
|
|
| @@ -68,7 +68,7 @@ TestPrimitive(1, 1, 0.1);
|
| TestPrimitive(4, 3.1, 4);
|
| TestPrimitive(4, 4, 3.1);
|
| TestPrimitive(0, -1.1, 0);
|
| -TestPrimitive(0, 0, -1.1)
|
| +TestPrimitive(0, 0, -1.1);
|
| TestPrimitive(-2, -2, -3.1);
|
| TestPrimitive(-2, -3.1, -2);
|
|
|
|
|