| Index: test/mjsunit/compiler/count-deopt.js
|
| diff --git a/test/mjsunit/compiler/count-deopt.js b/test/mjsunit/compiler/count-deopt.js
|
| index 415dadc0cf43d4749456a13ff15d7221ed1b72a6..55558beed90d774888c6d925602d27e6d3910aaf 100644
|
| --- a/test/mjsunit/compiler/count-deopt.js
|
| +++ b/test/mjsunit/compiler/count-deopt.js
|
| @@ -40,7 +40,7 @@ assertEquals(2.1, o.x);
|
|
|
|
|
| // Test deopt with count operation on named property.
|
| -function inc2(p) { p.x++ }
|
| +function inc2(p) { p.x++; }
|
|
|
| o.x = "42";
|
| inc2(o);
|
| @@ -158,9 +158,9 @@ q[0] = 42.1;
|
| assertEquals(44.1, inc9(q, 1));
|
|
|
| // Test deopt because of a failed map check.
|
| -function inc10(p) { return p.x++ }
|
| +function inc10(p) { return p.x++; }
|
| var g1 = {x:0};
|
| -var g2 = {y:0, x:42}
|
| +var g2 = {y:0, x:42};
|
| for (var i = 0; i < 5; ++i) {
|
| g1.x = 42;
|
| assertEquals(42, inc10(g1));
|
|
|