Commit b4bae54e authored by ricow@chromium.org's avatar ricow@chromium.org

Decrease number of runs in mjsunit/compiler/pic.js (Test still gets optimized,...

Decrease number of runs in mjsunit/compiler/pic.js (Test still gets optimized, even without --stress-opt)
Review URL: http://codereview.chromium.org/6731049

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7414 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 385e4def
......@@ -53,7 +53,7 @@ o1.f = o2.f = o3.f = function() { return 99; }
// Run the test until we're fairly sure we've optimized the
// polymorphic property access.
for (var i = 0; i < 1000000; i++) {
for (var i = 0; i < 100000; i++) {
Test(o1);
Test(o2);
Test(o3);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment