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

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

Issue 328343004: Fix representation of Phis for mutable-heapnumber-in-object-literal properties (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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.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-3392.js
diff --git a/test/mjsunit/regress/regress-crbug-382513.js b/test/mjsunit/regress/regress-3392.js
similarity index 69%
copy from test/mjsunit/regress/regress-crbug-382513.js
copy to test/mjsunit/regress/regress-3392.js
index 59d2dcac72b5a716ff753f7ffaa0e6517c01bfa4..375f30210ce11272799c78b51463d97fc6b65998 100644
--- a/test/mjsunit/regress/regress-crbug-382513.js
+++ b/test/mjsunit/regress/regress-3392.js
@@ -4,7 +4,14 @@
// Flags: --allow-natives-syntax
-function foo() { return [+0,false].indexOf(-(4/3)); }
+function foo() {
+ var a = {b: -1.5};
+ for (var i = 0; i < 1; i++) {
+ a.b = 1;
+ }
+ assertTrue(0 <= a.b);
+}
+
foo();
foo();
%OptimizeFunctionOnNextCall(foo);
« no previous file with comments | « src/hydrogen.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698