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

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

Issue 547553003: Harden OptimizeFunctionOnNextCall. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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/runtime.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-411237.js
diff --git a/test/mjsunit/regress/regress-347906.js b/test/mjsunit/regress/regress-411237.js
similarity index 61%
copy from test/mjsunit/regress/regress-347906.js
copy to test/mjsunit/regress/regress-411237.js
index c751618928c93015679087ee1b500637657aa341..8b75ba3015612ad9699f468862f79cde1fb77731 100644
--- a/test/mjsunit/regress/regress-347906.js
+++ b/test/mjsunit/regress/regress-411237.js
@@ -4,11 +4,12 @@
// Flags: --allow-natives-syntax --harmony
-function foo() {
- return Math.clz32(12.34);
-}
+try {
+ %OptimizeFunctionOnNextCall(print);
+} catch(e) { }
-foo();
-foo();
-%OptimizeFunctionOnNextCall(foo);
-foo();
+try {
+ function* f() {
+ }
+ %OptimizeFunctionOnNextCall(f);
+} catch(e) { }
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698