| Index: test/mjsunit/compiler/inline-context-slots.js
|
| diff --git a/test/mjsunit/compiler/inline-context-slots.js b/test/mjsunit/compiler/inline-context-slots.js
|
| index d0e907b1e5edc3a50c38b853b7d108a0b501e894..fcf7df26cd2c2071412fa87761c6f46ef57c0602 100644
|
| --- a/test/mjsunit/compiler/inline-context-slots.js
|
| +++ b/test/mjsunit/compiler/inline-context-slots.js
|
| @@ -38,10 +38,10 @@
|
| function F() {}
|
| F.prototype.max = function() {
|
| return X > Y ? X : Y;
|
| - }
|
| + };
|
| F.prototype.run = function() {
|
| return this.max();
|
| - }
|
| + };
|
| var f = new F();
|
| for (var i=0; i<5; i++) f.run();
|
| %OptimizeFunctionOnNextCall(f.run);
|
|
|