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

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

Issue 148213008: Merged r18697 into 3.23 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.23
Patch Set: Created 6 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/version.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-333594.js
diff --git a/test/mjsunit/regress/regress-334708.js b/test/mjsunit/regress-333594.js
similarity index 90%
copy from test/mjsunit/regress/regress-334708.js
copy to test/mjsunit/regress-333594.js
index f0291bbdab61128baad9df89457d045b66644f1b..6f6dbaafcd64d8b752226a290df525ca200b69a0 100644
--- a/test/mjsunit/regress/regress-334708.js
+++ b/test/mjsunit/regress-333594.js
@@ -27,16 +27,16 @@
// Flags: --allow-natives-syntax
-function foo(x, y) {
- return Math.floor(x / y);
-}
+var a = { x: 1.1 };
+a.x = 0;
+var G = a.x;
+var o = { x: {} };
-function bar(x, y) {
- return foo(x + 1, y + 1);
+function func() {
+ return {x: G};
}
-foo(16, "4");
-
-bar(64, 2);
-%OptimizeFunctionOnNextCall(bar);
-bar(64, 2);
+func();
+func();
+%OptimizeFunctionOnNextCall(func);
+assertEquals(0, func().x);
« no previous file with comments | « src/version.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698