diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-20 13:57:31 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-05-20 15:07:46 +0100 |
commit | 65603e2fc18b48e6e55a3dd693669413141694ec (patch) | |
tree | 90988d99c2a9e28793183afa69fc349c9911d00a /disas | |
parent | 22b31af26ff31ef97a9d482fb5e336d699ae33f3 (diff) | |
download | qemu-65603e2fc18b48e6e55a3dd693669413141694ec.tar.gz qemu-65603e2fc18b48e6e55a3dd693669413141694ec.tar.bz2 qemu-65603e2fc18b48e6e55a3dd693669413141694ec.zip |
tci: do not include exec/exec-all.h
TCI does not need the runtime definition in exec-all.h. It only needs the
host-side definitions in tcg/tcg.h. Now that cpu.h is not included
everywhere, this caused a failure because exec-all.h does need cpu.h
but does not include it itself.
Fix by including the intended header.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1463745452-25831-1-git-send-email-pbonzini@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'disas')
-rw-r--r-- | disas/tci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/disas/tci.c b/disas/tci.c index 7233343fa1..1cdf5eeafc 100644 --- a/disas/tci.c +++ b/disas/tci.c @@ -20,7 +20,6 @@ #include "qemu/osdep.h" #include "qemu-common.h" #include "disas/bfd.h" -#include "exec/exec-all.h" #include "tcg/tcg.h" /* Disassemble TCI bytecode. */ |