Commit 4da450e6167830c88225915eb7e75b582b634215

Authored by blueswir1
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
target-sparc/exec.h
@@ -30,6 +30,7 @@ static inline void regs_to_env(void) @@ -30,6 +30,7 @@ static inline void regs_to_env(void)
30 30
31 int cpu_sparc_handle_mmu_fault(CPUState *env1, target_ulong address, int rw, 31 int cpu_sparc_handle_mmu_fault(CPUState *env1, target_ulong address, int rw,
32 int mmu_idx, int is_softmmu); 32 int mmu_idx, int is_softmmu);
  33 +void do_interrupt(int intno);
33 34
34 static inline int cpu_halted(CPUState *env1) { 35 static inline int cpu_halted(CPUState *env1) {
35 if (!env1->halted) 36 if (!env1->halted)
target-sparc/helper.h
@@ -180,7 +180,6 @@ void cpu_lock(void); @@ -180,7 +180,6 @@ void cpu_lock(void);
180 void cpu_unlock(void); 180 void cpu_unlock(void);
181 void cpu_loop_exit(void); 181 void cpu_loop_exit(void);
182 void set_cwp(int new_cwp); 182 void set_cwp(int new_cwp);
183 -void do_interrupt(int intno);  
184 void memcpy32(target_ulong *dst, const target_ulong *src); 183 void memcpy32(target_ulong *dst, const target_ulong *src);
185 target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev); 184 target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev);
186 void dump_mmu(CPUState *env); 185 void dump_mmu(CPUState *env);