| Index: test/mjsunit/regress/regress-334708.js
|
| diff --git a/test/mjsunit/compiler/lazy-const-lookup.js b/test/mjsunit/regress/regress-334708.js
|
| similarity index 86%
|
| copy from test/mjsunit/compiler/lazy-const-lookup.js
|
| copy to test/mjsunit/regress/regress-334708.js
|
| index b4f15a1c9f4977dcd42f249d8242849e3269906d..f0291bbdab61128baad9df89457d045b66644f1b 100644
|
| --- a/test/mjsunit/compiler/lazy-const-lookup.js
|
| +++ b/test/mjsunit/regress/regress-334708.js
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2011 the V8 project authors. All rights reserved.
|
| +// Copyright 2014 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -27,15 +27,16 @@
|
|
|
| // Flags: --allow-natives-syntax
|
|
|
| -function outer() {
|
| - const x = 1;
|
| - function inner() {
|
| - return x;
|
| - }
|
| - inner();
|
| - %OptimizeFunctionOnNextCall(inner);
|
| - inner();
|
| +function foo(x, y) {
|
| + return Math.floor(x / y);
|
| }
|
|
|
| -outer();
|
| +function bar(x, y) {
|
| + return foo(x + 1, y + 1);
|
| +}
|
| +
|
| +foo(16, "4");
|
|
|
| +bar(64, 2);
|
| +%OptimizeFunctionOnNextCall(bar);
|
| +bar(64, 2);
|
|
|