[Qemu-devel] [PATCH 1/2] tcg: Fix regression in tcg_gen_deposit_i64.

2011-11-01 Thread Richard Henderson
The error being caused by the failure to copy the other half of the input to the output after having narrowed the deposit operation. Signed-off-by: Richard Henderson --- tcg/tcg-op.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h index 24ec7

Re: [Qemu-devel] [PATCH 1/2] tcg: Fix regression in tcg_gen_deposit_i64.

2011-11-01 Thread malc
On Tue, 1 Nov 2011, Richard Henderson wrote: > The error being caused by the failure to copy the other half of > the input to the output after having narrowed the deposit operation. Thanks, applied. > > Signed-off-by: Richard Henderson > --- > tcg/tcg-op.h |2 ++ > 1 files changed, 2 inse

Re: [Qemu-devel] [PATCH 1/2] tcg: Fix regression in tcg_gen_deposit_i64.

2011-11-02 Thread Alexander Graf
Richard Henderson wrote: > The error being caused by the failure to copy the other half of > the input to the output after having narrowed the deposit operation. > Thanks, this makes my ppc32 host work again :) Alex