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

Unified Diff: test/mjsunit/regress/regress-crbug-490021.js

Issue 1235563002: [arm64] Fixed unnecessary environment assignment to LSmiTag instruction. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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/arm64/lithium-arm64.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-crbug-490021.js
diff --git a/test/mjsunit/regress/regress-filter-contexts.js b/test/mjsunit/regress/regress-crbug-490021.js
similarity index 75%
copy from test/mjsunit/regress/regress-filter-contexts.js
copy to test/mjsunit/regress/regress-crbug-490021.js
index d2abe0032548428324afd6675a7031bf53a5e56e..745c0a801051037274b6f1e52de5a8ed92d98a86 100644
--- a/test/mjsunit/regress/regress-filter-contexts.js
+++ b/test/mjsunit/regress/regress-crbug-490021.js
@@ -4,9 +4,10 @@
// Flags: --allow-natives-syntax
-function f() { return f.x; }
-f.__proto__ = null;
-f.prototype = "";
+var global = new Object(3);
+function f() {
+ global[0] = global[0] >>> 15.5;
+}
f();
f();
« no previous file with comments | « src/arm64/lithium-arm64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698