[Qemu-devel] [PATCH] s390x: free tmp explicitly in every opcode for disas_a5()

2011-05-27 Thread Alexander Graf
The disas_a5() function provided a TCG tmp variable which was populated by the respective opcode implementations, but freed at the end of the function in generic code. That makes it really hard for code review, so let's move the freeing to the same scope as the actual allocation. Signed-off-by: A

Re: [Qemu-devel] [PATCH] s390x: free tmp explicitly in every opcode for disas_a5()

2011-05-29 Thread Andreas Färber
Am 26.05.2011 um 21:53 schrieb Alexander Graf: The disas_a5() function provided a TCG tmp variable which was populated by the respective opcode implementations, but freed at the end of the function in generic code. That makes it really hard for code review, so let's move the freeing to the sa