On 25 May 2011 21:49, Stefan Weil <w...@mail.berlios.de> wrote: > This patch breaks compilation at least on 64 bit hosts with configure option > --enable-debug-tcg > (tested on 64 bit Debian Linux). > > target-arm/translate.c: In function ‘gen_vfp_uito’: > target-arm/translate.c:999: error: incompatible type for argument 2 of > ‘tcg_gen_addi_i32’
Oops. Should be using tcg_temp_new_ptr()/tcg_gen_addi_ptr(), not the i32 specific ops. I'll put together a fix tomorrow. -- PMM