Commit 63d412465b4c34d6f695439648b5bc89f63ee1a1
1 parent
fe33867b
Fix the comment added in r5844.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5846 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
exec.c
@@ -437,7 +437,7 @@ static void code_gen_alloc(unsigned long tb_size) | @@ -437,7 +437,7 @@ static void code_gen_alloc(unsigned long tb_size) | ||
437 | if (code_gen_buffer_size > (512 * 1024 * 1024)) | 437 | if (code_gen_buffer_size > (512 * 1024 * 1024)) |
438 | code_gen_buffer_size = (512 * 1024 * 1024); | 438 | code_gen_buffer_size = (512 * 1024 * 1024); |
439 | #elif defined(__arm__) | 439 | #elif defined(__arm__) |
440 | - /* Map the buffer below 64M, so we can use direct calls and branches */ | 440 | + /* Map the buffer below 32M, so we can use direct calls and branches */ |
441 | flags |= MAP_FIXED; | 441 | flags |= MAP_FIXED; |
442 | start = (void *) 0x01000000UL; | 442 | start = (void *) 0x01000000UL; |
443 | if (code_gen_buffer_size > 16 * 1024 * 1024) | 443 | if (code_gen_buffer_size > 16 * 1024 * 1024) |