| Index: test/mjsunit/regress/call-function-in-effect-context-deopt.js
|
| diff --git a/test/mjsunit/compiler/increment-typefeedback.js b/test/mjsunit/regress/call-function-in-effect-context-deopt.js
|
| similarity index 81%
|
| copy from test/mjsunit/compiler/increment-typefeedback.js
|
| copy to test/mjsunit/regress/call-function-in-effect-context-deopt.js
|
| index 798959296c43014f252d65ae5dd11e00563bfd04..9a36c141b7bc6c00ec8ed8b558588abac21beb0f 100644
|
| --- a/test/mjsunit/compiler/increment-typefeedback.js
|
| +++ b/test/mjsunit/regress/call-function-in-effect-context-deopt.js
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2013 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,13 +27,15 @@
|
|
|
| // Flags: --allow-natives-syntax
|
|
|
| -function f(x) {
|
| - x++;
|
| - return x;
|
| +function f(deopt, osr) {
|
| + var result = "result";
|
| + %_CallFunction(0, 0, function() {});
|
| + var dummy = deopt + 0;
|
| + if (osr) while (%GetOptimizationStatus(f) == 2) {}
|
| + return result;
|
| }
|
|
|
| -f(0.5);
|
| -f(0.5);
|
| +assertEquals("result", f(3, false));
|
| +assertEquals("result", f(3, false));
|
| %OptimizeFunctionOnNextCall(f);
|
| -f(0.5);
|
| -assertOptimized(f);
|
| +assertEquals("result", f("foo", true));
|
|
|