mirror of https://github.com/xemu-project/xemu.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)
|
||||
{
|
||||
#if !defined(FLUSH_ALL_TLBS)
|
||||
target_ulong mask;
|
||||
#if defined(FLUSH_ALL_TLBS)
|
||||
#else
|
||||
int do_inval;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue