Re: [Qemu-devel] [PATCH] Fix conversions from pointer to tcg_target_long

2011-04-13 Thread Stefan Weil
Am 14.04.2011 03:42, schrieb TeLeMan: On Sat, Apr 2, 2011 at 19:36, Stefan Weil wrote: tcg_gen_exit_tb takes a parameter of type tcg_target_long, so the type casts of pointer to long should be replaced by type casts of pointer to tcg_target_long (suggested by Blue Swirl). These changes are nee

Re: [Qemu-devel] [PATCH] Fix conversions from pointer to tcg_target_long

2011-04-13 Thread TeLeMan
On Sat, Apr 2, 2011 at 19:36, Stefan Weil wrote: > tcg_gen_exit_tb takes a parameter of type tcg_target_long, > so the type casts of pointer to long should be replaced by > type casts of pointer to tcg_target_long (suggested by Blue Swirl). > > These changes are needed for build environments where

Re: [Qemu-devel] [PATCH] Fix conversions from pointer to tcg_target_long

2011-04-09 Thread Aurelien Jarno
On Sat, Apr 02, 2011 at 01:36:31PM +0200, Stefan Weil wrote: > tcg_gen_exit_tb takes a parameter of type tcg_target_long, > so the type casts of pointer to long should be replaced by > type casts of pointer to tcg_target_long (suggested by Blue Swirl). > > These changes are needed for build enviro

[Qemu-devel] [PATCH] Fix conversions from pointer to tcg_target_long

2011-04-02 Thread Stefan Weil
tcg_gen_exit_tb takes a parameter of type tcg_target_long, so the type casts of pointer to long should be replaced by type casts of pointer to tcg_target_long (suggested by Blue Swirl). These changes are needed for build environments where sizeof(long) != sizeof(void *), especially for w64. Signe