diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2010-01-15 08:56:36 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-01-19 16:31:03 -0600 |
commit | 234d26e5c33cfa75da2899144a74613c46015db4 (patch) | |
tree | 5eba9592d8c2f0fa47e3421cf212c74488cee262 /cpu-exec.c | |
parent | 536497d74b97b0bf8a600bd0845cde68eff120aa (diff) | |
download | qemu-234d26e5c33cfa75da2899144a74613c46015db4.tar.gz qemu-234d26e5c33cfa75da2899144a74613c46015db4.tar.bz2 qemu-234d26e5c33cfa75da2899144a74613c46015db4.zip |
fix wrong indentation
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'cpu-exec.c')
-rw-r--r-- | cpu-exec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index a426db9cc0..2f119a9419 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -588,11 +588,9 @@ int cpu_exec(CPUState *env1) /* see if we can patch the calling TB. When the TB spans two pages, we cannot safely do a direct jump. */ - { - if (next_tb != 0 && tb->page_addr[1] == -1) { + if (next_tb != 0 && tb->page_addr[1] == -1) { tb_add_jump((TranslationBlock *)(next_tb & ~3), next_tb & 3, tb); } - } spin_unlock(&tb_lock); env->current_tb = tb; |