]> git.proxmox.com Git - qemu.git/commitdiff
target-sparc: fix --enable-debug build for 64 bit host
authorStefan Weil <weil@mail.berlios.de>
Thu, 25 Feb 2010 18:05:41 +0000 (19:05 +0100)
committerBlue Swirl <blauwirbel@gmail.com>
Thu, 25 Feb 2010 18:26:25 +0000 (18:26 +0000)
b551ec04ca45d1925417dd2ec7c1b7f115c84f1d fixed
the compilation for 32 bit hosts, but introduced
a new error for 64 bit hosts:

tcg_temp_new_ptr needs a matching tcg_temp_free_ptr.

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
target-sparc/translate.c

index b7d2a324c23752f5685bae088c464ee21b5b6539..1164feb882261b28738d4058335028354c95ab81 100644 (file)
@@ -1680,7 +1680,7 @@ static inline void gen_load_trap_state_at_tl(TCGv_ptr r_tsptr, TCGv_ptr cpu_env)
         TCGv_ptr r_tl_tmp = tcg_temp_new_ptr();
         tcg_gen_ext_i32_ptr(r_tl_tmp, r_tl);
         tcg_gen_add_ptr(r_tsptr, r_tsptr, r_tl_tmp);
-        tcg_temp_free_i32(r_tl_tmp);
+        tcg_temp_free_ptr(r_tl_tmp);
     }
 
     tcg_temp_free_i32(r_tl);