diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-11 22:42:42 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-11 22:42:42 +0000 |
commit | 95870356023ce0a355c0005ae8ea1292de3c25a2 (patch) | |
tree | c92bb9b98d4f0723841fd07ffddec83addbd391f /target-alpha | |
parent | 93220573844045c48eeda03df74db04418456ce3 (diff) |
target-alpha: fix 2 warnings
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5992 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha')
-rw-r--r-- | target-alpha/cpu.h | 4 | ||||
-rw-r--r-- | target-alpha/exec.h | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index 65be4fb5e5..710a6021fa 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -407,6 +407,10 @@ int cpu_alpha_exec(CPUAlphaState *s); is returned if the signal was handled by the virtual CPU. */ int cpu_alpha_signal_handler(int host_signum, void *pinfo, void *puc); +int cpu_alpha_handle_mmu_fault (CPUState *env, uint64_t address, int rw, + int mmu_idx, int is_softmmu); +void do_interrupt (CPUState *env); + int cpu_alpha_mfpr (CPUState *env, int iprn, uint64_t *valp); int cpu_alpha_mtpr (CPUState *env, int iprn, uint64_t val, uint64_t *oldvalp); void pal_init (CPUState *env); diff --git a/target-alpha/exec.h b/target-alpha/exec.h index 99b31312e3..bf0c80e237 100644 --- a/target-alpha/exec.h +++ b/target-alpha/exec.h @@ -48,11 +48,6 @@ static always_inline void regs_to_env(void) { } -int cpu_alpha_handle_mmu_fault (CPUState *env, uint64_t address, int rw, - int mmu_idx, int is_softmmu); - -void do_interrupt (CPUState *env); - static always_inline int cpu_halted(CPUState *env) { if (!env->halted) return 0; |