Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1460)

Unified Diff: test/mjsunit/regress/regress-449291.js

Issue 898753003: Infer HConstant::NotInNewSpace only if the supplied handle is null. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-449291.js
diff --git a/test/mjsunit/array-push12.js b/test/mjsunit/regress/regress-449291.js
similarity index 67%
copy from test/mjsunit/array-push12.js
copy to test/mjsunit/regress/regress-449291.js
index f4c15b484b41197c9007113ecf8f91fe909cc5d3..fb56027b67f3f176f1432c11b39075aec6cc8429 100644
--- a/test/mjsunit/array-push12.js
+++ b/test/mjsunit/regress/regress-449291.js
@@ -4,20 +4,16 @@
// Flags: --allow-natives-syntax
-var a = [];
-for (var i = -20; i < 0; ++i) {
- a[i] = 0;
-}
-
-function g() {
- [].push.apply(a, arguments);
-}
+a = {y:1.5};
+a.y = 1093445778;
+b = a.y;
+c = {y:{}};
function f() {
- g();
+ return {y: b};
}
-g();
-g();
-%OptimizeFunctionOnNextCall(f);
f();
+f();
+%OptimizeFunctionOnNextCall(f);
+assertEquals(f().y, 1093445778);
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698