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

Unified Diff: test/mjsunit/compiler/regress-deopt-call-as-function.js

Issue 8555004: Speedup unit test to avoid timeout on slow ARM simulator. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/regress-deopt-call-as-function.js
===================================================================
--- test/mjsunit/compiler/regress-deopt-call-as-function.js (revision 9983)
+++ test/mjsunit/compiler/regress-deopt-call-as-function.js (working copy)
@@ -32,7 +32,7 @@
function test_context() {
function foo(x) { return 42; }
var s, t;
- for (var i = 0x7ff00000; i < 0x80000000; i++) {
+ for (var i = 0x7fff0000; i < 0x80000000; i++) {
bar(t = foo(i) ? bar(42 + i - i) : bar(0), s = i + t);
}
return s;
@@ -43,7 +43,7 @@
function value_context() {
function foo(x) { return 42; }
var s, t;
- for (var i = 0x7ff00000; i < 0x80000000; i++) {
+ for (var i = 0x7fff0000; i < 0x80000000; i++) {
bar(t = foo(i), s = i + t);
}
return s;
@@ -54,7 +54,7 @@
function effect_context() {
function foo(x) { return 42; }
var s, t;
- for (var i = 0x7ff00000; i < 0x80000000; i++) {
+ for (var i = 0x7fff0000; i < 0x80000000; i++) {
bar(foo(i), s = i + 42);
}
return s;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698