mirror of https://github.com/xqemu/xqemu.git
target-ppc: Fix unused variable warning for FLUSH_ALL_TLBS
Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
8e33944f8c
commit
cca48a93a9
|
@ -2260,8 +2260,9 @@ void helper_store_601_batu(CPUPPCState *env, uint32_t nr, target_ulong value)
|
||||||
|
|
||||||
void helper_store_601_batl(CPUPPCState *env, uint32_t nr, target_ulong value)
|
void helper_store_601_batl(CPUPPCState *env, uint32_t nr, target_ulong value)
|
||||||
{
|
{
|
||||||
|
#if !defined(FLUSH_ALL_TLBS)
|
||||||
target_ulong mask;
|
target_ulong mask;
|
||||||
#if defined(FLUSH_ALL_TLBS)
|
#else
|
||||||
int do_inval;
|
int do_inval;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue