Commit 63d412465b4c34d6f695439648b5bc89f63ee1a1

Authored by balrog
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
... ... @@ -437,7 +437,7 @@ static void code_gen_alloc(unsigned long tb_size)
437 437 if (code_gen_buffer_size > (512 * 1024 * 1024))
438 438 code_gen_buffer_size = (512 * 1024 * 1024);
439 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 441 flags |= MAP_FIXED;
442 442 start = (void *) 0x01000000UL;
443 443 if (code_gen_buffer_size > 16 * 1024 * 1024)
... ...