Re: [Qemu-devel] [PATCH 01/12] target-s390x: Fix wrong argument in call of tcg_gen_shl_i64()

2011-05-26 Thread Alexander Graf
On 26.05.2011, at 06:56, Stefan Weil wrote: > Am 26.05.2011 06:32, schrieb Stefan Weil: >> Am 26.05.2011 00:15, schrieb Alexander Graf: >>> On 25.05.2011, at 22:25, Stefan Weil wrote: >>> tcg_gen_shl_i64 needs an argument of type TCGv_i64. Using tmp4 needs some additional changes.

Re: [Qemu-devel] [PATCH 01/12] target-s390x: Fix wrong argument in call of tcg_gen_shl_i64()

2011-05-25 Thread Stefan Weil
Am 26.05.2011 06:32, schrieb Stefan Weil: Am 26.05.2011 00:15, schrieb Alexander Graf: On 25.05.2011, at 22:25, Stefan Weil wrote: tcg_gen_shl_i64 needs an argument of type TCGv_i64. Using tmp4 needs some additional changes. Signed-off-by: Stefan Weil --- target-s390x/translate.c |8 +

Re: [Qemu-devel] [PATCH 01/12] target-s390x: Fix wrong argument in call of tcg_gen_shl_i64()

2011-05-25 Thread Stefan Weil
Am 26.05.2011 00:15, schrieb Alexander Graf: On 25.05.2011, at 22:25, Stefan Weil wrote: tcg_gen_shl_i64 needs an argument of type TCGv_i64. Using tmp4 needs some additional changes. Signed-off-by: Stefan Weil --- target-s390x/translate.c |8 +--- 1 files changed, 5 insertions(+), 3 del

Re: [Qemu-devel] [PATCH 01/12] target-s390x: Fix wrong argument in call of tcg_gen_shl_i64()

2011-05-25 Thread Alexander Graf
On 25.05.2011, at 22:25, Stefan Weil wrote: > tcg_gen_shl_i64 needs an argument of type TCGv_i64. > Using tmp4 needs some additional changes. > > Signed-off-by: Stefan Weil > --- > target-s390x/translate.c |8 +--- > 1 files changed, 5 insertions(+), 3 deletions(-) > > diff --git a/targ

[Qemu-devel] [PATCH 01/12] target-s390x: Fix wrong argument in call of tcg_gen_shl_i64()

2011-05-25 Thread Stefan Weil
tcg_gen_shl_i64 needs an argument of type TCGv_i64. Using tmp4 needs some additional changes. Signed-off-by: Stefan Weil --- target-s390x/translate.c |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/target-s390x/translate.c b/target-s390x/translate.c index 8e71df3.