summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-01 02:19:41 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-01 02:19:41 +0000
commit63d412465b4c34d6f695439648b5bc89f63ee1a1 (patch)
treebe1e0a79812a79425e595271042f18bd31404099 /exec.c
parentfe33867b0dcea3cdbe276402694e15b7166e9a54 (diff)
downloadqemu-63d412465b4c34d6f695439648b5bc89f63ee1a1.tar.gz
Fix the comment added in r5844.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5846 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.c b/exec.c
index 1aa64327af..f55c198cfb 100644
--- a/exec.c
+++ b/exec.c
@@ -437,7 +437,7 @@ static void code_gen_alloc(unsigned long tb_size)
if (code_gen_buffer_size > (512 * 1024 * 1024))
code_gen_buffer_size = (512 * 1024 * 1024);
#elif defined(__arm__)
- /* Map the buffer below 64M, so we can use direct calls and branches */
+ /* Map the buffer below 32M, so we can use direct calls and branches */
flags |= MAP_FIXED;
start = (void *) 0x01000000UL;
if (code_gen_buffer_size > 16 * 1024 * 1024)