| Index: test/mjsunit/compiler/pic.js
|
| diff --git a/test/mjsunit/compiler/pic.js b/test/mjsunit/compiler/pic.js
|
| index f5b136ce91d1de99e160ea5143e75872b18cb73e..007d9e17afcdfbfd2fb722b83e2acb870dc4bb9e 100644
|
| --- a/test/mjsunit/compiler/pic.js
|
| +++ b/test/mjsunit/compiler/pic.js
|
| @@ -51,7 +51,7 @@ function Test(o) {
|
| var o1 = { x: 0, y: 1 };
|
| var o2 = { y: 1, x: 0 };
|
| var o3 = { y: 1, z: 2, x: 0 };
|
| -o1.f = o2.f = o3.f = function() { return 99; }
|
| +o1.f = o2.f = o3.f = function() { return 99; };
|
|
|
| // Run the test until we're fairly sure we've optimized the
|
| // polymorphic property access.
|
|
|