mirror of https://gitee.com/openkylin/qemu.git
Silence some warnings about no value returned from non-void function
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5430 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
60dd316ea7
commit
1ed1a78738
|
@ -449,6 +449,7 @@ static inline int opsize_bytes(int opsize)
|
|||
case OS_DOUBLE: return 8;
|
||||
default:
|
||||
qemu_assert(0, "bad operand size");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -228,7 +228,7 @@ void sh4_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
|
|||
(*cpu_fprintf)(f, "%s\n", sh4_defs[i].name);
|
||||
}
|
||||
|
||||
static int cpu_sh4_register(CPUSH4State *env, const sh4_def_t *def)
|
||||
static void cpu_sh4_register(CPUSH4State *env, const sh4_def_t *def)
|
||||
{
|
||||
env->pvr = def->pvr;
|
||||
env->prr = def->prr;
|
||||
|
|
Loading…
Reference in New Issue