projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49a945a
)
fix wrong indentation
author
Paolo Bonzini
<pbonzini@redhat.com>
Fri, 15 Jan 2010 07:56:36 +0000
(08:56 +0100)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Tue, 19 Jan 2010 22:31:03 +0000
(16:31 -0600)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
cpu-exec.c
patch
|
blob
|
history
diff --git
a/cpu-exec.c
b/cpu-exec.c
index a426db9cc0d9b68956d869a46de2074f12656dbf..2f119a94194d8073301b3a9501e69ba2f091f7c8 100644
(file)
--- 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;