Re: [Qemu-devel] [PATCH] tcg: Remove redundant pointer from TCGContext

2012-10-07 Thread Blue Swirl
Thanks, applied. On Thu, Oct 4, 2012 at 6:29 PM, Stefan Weil wrote: > The pointer entry 'temps' always refers to the array entry 'static_temps'. > Removing the pointer and renaming 'static_temps' to 'temps' reduces the > size of TCGContext (4 or 8 byte) and allows better code generation. > > Sign

Re: [Qemu-devel] [PATCH] tcg: Remove redundant pointer from TCGContext

2012-10-04 Thread Richard Henderson
On 10/04/2012 11:29 AM, Stefan Weil wrote: > The pointer entry 'temps' always refers to the array entry 'static_temps'. > Removing the pointer and renaming 'static_temps' to 'temps' reduces the > size of TCGContext (4 or 8 byte) and allows better code generation. > > Signed-off-by: Stefan Weil R

[Qemu-devel] [PATCH] tcg: Remove redundant pointer from TCGContext

2012-10-04 Thread Stefan Weil
The pointer entry 'temps' always refers to the array entry 'static_temps'. Removing the pointer and renaming 'static_temps' to 'temps' reduces the size of TCGContext (4 or 8 byte) and allows better code generation. Signed-off-by: Stefan Weil --- The size of the executables is typically reduced b