Commit 4da450e6167830c88225915eb7e75b582b634215
1 parent
293f78bc
Move prototype back to avoid a compiler warning
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4443 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
2 changed files
with
1 additions
and
1 deletions
target-sparc/exec.h
... | ... | @@ -30,6 +30,7 @@ static inline void regs_to_env(void) |
30 | 30 | |
31 | 31 | int cpu_sparc_handle_mmu_fault(CPUState *env1, target_ulong address, int rw, |
32 | 32 | int mmu_idx, int is_softmmu); |
33 | +void do_interrupt(int intno); | |
33 | 34 | |
34 | 35 | static inline int cpu_halted(CPUState *env1) { |
35 | 36 | if (!env1->halted) | ... | ... |
target-sparc/helper.h
... | ... | @@ -180,7 +180,6 @@ void cpu_lock(void); |
180 | 180 | void cpu_unlock(void); |
181 | 181 | void cpu_loop_exit(void); |
182 | 182 | void set_cwp(int new_cwp); |
183 | -void do_interrupt(int intno); | |
184 | 183 | void memcpy32(target_ulong *dst, const target_ulong *src); |
185 | 184 | target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev); |
186 | 185 | void dump_mmu(CPUState *env); | ... | ... |