| Index: test/mjsunit/compiler/regress-arguments.js
|
| diff --git a/test/mjsunit/compiler/regress-arguments.js b/test/mjsunit/compiler/regress-arguments.js
|
| index 234d3fbc974dafd36a3fb915e58648fd55641434..859300a7cbbf01e73a63df4a197d8bfc5a2c655f 100644
|
| --- a/test/mjsunit/compiler/regress-arguments.js
|
| +++ b/test/mjsunit/compiler/regress-arguments.js
|
| @@ -30,8 +30,8 @@
|
| // Test passing null or undefined as receiver.
|
| function f() { return this.foo; }
|
|
|
| -function g() { return f.apply(null, arguments); }
|
| -function h() { return f.apply(void 0, arguments); }
|
| +function g() { return f.apply(this, arguments); }
|
| +function h() { return f.apply(this, arguments); }
|
|
|
| var foo = 42;
|
|
|
|
|