mirror of https://github.com/xemu-project/xemu.git
CRIS: Fix remaining build warnings.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Acked-by: Edgar E. Iglesias <edgar.iglesias@gmail.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6638 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
07c485ce78
commit
cc53adbca0
|
@ -25,8 +25,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "hw.h"
|
#include "hw.h"
|
||||||
#include "net.h"
|
#include "net.h"
|
||||||
|
#include "etraxfs.h"
|
||||||
#include "etraxfs_dma.h"
|
|
||||||
|
|
||||||
#define D(x)
|
#define D(x)
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include "hw.h"
|
#include "hw.h"
|
||||||
#include "qemu-char.h"
|
#include "qemu-char.h"
|
||||||
|
#include "etraxfs.h"
|
||||||
|
|
||||||
#define D(x)
|
#define D(x)
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include "hw.h"
|
#include "hw.h"
|
||||||
#include "sysemu.h"
|
#include "sysemu.h"
|
||||||
#include "qemu-timer.h"
|
#include "qemu-timer.h"
|
||||||
|
#include "etraxfs.h"
|
||||||
|
|
||||||
#define D(x)
|
#define D(x)
|
||||||
|
|
||||||
|
|
|
@ -216,6 +216,9 @@ static inline int cpu_mmu_index (CPUState *env)
|
||||||
return !!(env->pregs[PR_CCS] & U_FLAG);
|
return !!(env->pregs[PR_CCS] & U_FLAG);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int cpu_cris_handle_mmu_fault(CPUState *env, target_ulong address, int rw,
|
||||||
|
int mmu_idx, int is_softmmu);
|
||||||
|
|
||||||
#if defined(CONFIG_USER_ONLY)
|
#if defined(CONFIG_USER_ONLY)
|
||||||
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
|
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -33,9 +33,6 @@ static inline void regs_to_env(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
int cpu_cris_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
|
|
||||||
int mmu_idx, int is_softmmu);
|
|
||||||
|
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
#include "softmmu_exec.h"
|
#include "softmmu_exec.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2633,7 +2633,8 @@ static unsigned int dec_movem_mr(DisasContext *dc)
|
||||||
tmp32 = tcg_temp_new_i32();
|
tmp32 = tcg_temp_new_i32();
|
||||||
tcg_gen_addi_tl(addr, cpu_R[dc->op1], i * 8);
|
tcg_gen_addi_tl(addr, cpu_R[dc->op1], i * 8);
|
||||||
gen_load(dc, tmp32, addr, 4, 0);
|
gen_load(dc, tmp32, addr, 4, 0);
|
||||||
}
|
} else
|
||||||
|
TCGV_UNUSED(tmp32);
|
||||||
tcg_temp_free(addr);
|
tcg_temp_free(addr);
|
||||||
|
|
||||||
for (i = 0; i < (nr >> 1); i++) {
|
for (i = 0; i < (nr >> 1); i++) {
|
||||||
|
|
Loading…
Reference in New Issue