Commit 1aeb239e authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Fix float conversion warning from some gcc versions.

Review URL: http://codereview.chromium.org/541026

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3585 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 612d9b82
......@@ -288,7 +288,7 @@ TEST(LinearAllocation) {
PagedSpace* map_space = Heap::map_space();
PagedSpace* cell_space = Heap::cell_space();
int new_space_max = 512 * KB;
for (int size = 1000; size < 5 * MB; size *= 1.5) {
for (int size = 1000; size < 5 * MB; size += size >> 1) {
bool gc_performed = true;
while (gc_performed) {
gc_performed = false;
......
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