Re: [Qemu-devel] [PATCH] target-moxie: Fix pointer-to-integer conversion (MinGW-w64)

2013-03-30 Thread Blue Swirl
Thanks, applied. On Sun, Mar 24, 2013 at 8:04 AM, Stefan Weil wrote: > The type cast must use tcg_target_long instead of long. > This makes a difference for hosts where sizeof(long) != sizeof(void *). > > Cc: Anthony Green > Cc: Blue Swirl > Signed-off-by: Stefan Weil > --- > target-moxie/tra

Re: [Qemu-devel] [PATCH] target-moxie: Fix pointer-to-integer conversion (MinGW-w64)

2013-03-30 Thread Blue Swirl
On Thu, Mar 28, 2013 at 7:00 PM, Anthony Green wrote: > Hi Stefan, > > This change is fine by me. > > It's not clear to me, as the author/maintainer of the moxie port, what > my responsibility/authority is. Do I simply reply to patches like > this with... > > Looks good to me. > Signed-off-by: An

Re: [Qemu-devel] [PATCH] target-moxie: Fix pointer-to-integer conversion (MinGW-w64)

2013-03-29 Thread Stefan Weil
Am 28.03.2013 20:00, schrieb Anthony Green: > Hi Stefan, > > This change is fine by me. > > It's not clear to me, as the author/maintainer of the moxie port, what > my responsibility/authority is. Do I simply reply to patches like > this with... > > Looks good to me. > Signed-off-by: Anthony Green

Re: [Qemu-devel] [PATCH] target-moxie: Fix pointer-to-integer conversion (MinGW-w64)

2013-03-28 Thread Anthony Green
Hi Stefan, This change is fine by me. It's not clear to me, as the author/maintainer of the moxie port, what my responsibility/authority is. Do I simply reply to patches like this with... Looks good to me. Signed-off-by: Anthony Green And then somebody commits it to the tree? Thanks! AG O

[Qemu-devel] [PATCH] target-moxie: Fix pointer-to-integer conversion (MinGW-w64)

2013-03-24 Thread Stefan Weil
The type cast must use tcg_target_long instead of long. This makes a difference for hosts where sizeof(long) != sizeof(void *). Cc: Anthony Green Cc: Blue Swirl Signed-off-by: Stefan Weil --- target-moxie/translate.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target