]> xenbits.xensource.com Git - qemu-xen-4.3-testing.git/commitdiff
Use correct type for SPARC cpu_cc_op
authorPaul Brook <paul@codesourcery.com>
Sat, 6 Jun 2009 01:54:03 +0000 (02:54 +0100)
committerPaul Brook <paul@codesourcery.com>
Sat, 6 Jun 2009 01:54:03 +0000 (02:54 +0100)
Signed-off-by: Paul Brook <paul@codesourcery.com>
target-sparc/translate.c

index cd22f2bf8f0b1ebcfb36677bfe6537e8586962d9..6de40791b517827d965d69029b62894d22a11cef 100644 (file)
@@ -42,7 +42,8 @@
 
 /* global register indexes */
 static TCGv_ptr cpu_env, cpu_regwptr;
-static TCGv cpu_cc_src, cpu_cc_src2, cpu_cc_dst, cpu_cc_op;
+static TCGv cpu_cc_src, cpu_cc_src2, cpu_cc_dst;
+static TCGv_i32 cpu_cc_op;
 static TCGv_i32 cpu_psr;
 static TCGv cpu_fsr, cpu_pc, cpu_npc, cpu_gregs[8];
 static TCGv cpu_y;