Re: [Qemu-devel] [PATCH] target-ppc: Fix compilation error with --enable-debug

2011-05-26 Thread Alexander Graf
Am 26.05.2011 um 20:28 schrieb Stefan Weil : > Am 26.05.2011 20:05, schrieb Peter Maydell: >> The PPC helper functions booke206_tlbflush and booke_setpid both >> take an i32 argument, so we need to use TCGv_i32 rather than TCGv, >> to avoid a compilation failure when compiling in debug mode. >

Re: [Qemu-devel] [PATCH] target-ppc: Fix compilation error with --enable-debug

2011-05-26 Thread Peter Maydell
On 26 May 2011 19:28, Stefan Weil wrote: > Am 26.05.2011 20:05, schrieb Peter Maydell: >> The PPC helper functions booke206_tlbflush and booke_setpid both >> take an i32 argument, so we need to use TCGv_i32 rather than TCGv, >> to avoid a compilation failure when compiling in debug mode. > See ht

Re: [Qemu-devel] [PATCH] target-ppc: Fix compilation error with --enable-debug

2011-05-26 Thread Stefan Weil
Am 26.05.2011 20:05, schrieb Peter Maydell: The PPC helper functions booke206_tlbflush and booke_setpid both take an i32 argument, so we need to use TCGv_i32 rather than TCGv, to avoid a compilation failure when compiling in debug mode. Signed-off-by: Peter Maydell --- target-ppc/translate_init

[Qemu-devel] [PATCH] target-ppc: Fix compilation error with --enable-debug

2011-05-26 Thread Peter Maydell
The PPC helper functions booke206_tlbflush and booke_setpid both take an i32 argument, so we need to use TCGv_i32 rather than TCGv, to avoid a compilation failure when compiling in debug mode. Signed-off-by: Peter Maydell --- target-ppc/translate_init.c |8 1 files changed, 4 insert