]> Git Repo - qemu.git/commitdiff
fix wrong indentation
authorPaolo Bonzini <[email protected]>
Fri, 15 Jan 2010 07:56:36 +0000 (08:56 +0100)
committerAnthony Liguori <[email protected]>
Tue, 19 Jan 2010 22:31:03 +0000 (16:31 -0600)
Signed-off-by: Paolo Bonzini <[email protected]>
Signed-off-by: Anthony Liguori <[email protected]>
cpu-exec.c

index a426db9cc0d9b68956d869a46de2074f12656dbf..2f119a94194d8073301b3a9501e69ba2f091f7c8 100644 (file)
@@ -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;
 
This page took 0.038779 seconds and 4 git commands to generate.