From: Paul Brook Date: Sat, 6 Jun 2009 01:54:03 +0000 (+0100) Subject: Use correct type for SPARC cpu_cc_op X-Git-Tag: v0.11.0-rc0~460 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=25517f999fbbaca4b63423c413629faa1f8eeb71;p=thirdparty%2Fqemu.git Use correct type for SPARC cpu_cc_op Signed-off-by: Paul Brook --- diff --git a/target-sparc/translate.c b/target-sparc/translate.c index cd22f2bf8f0..6de40791b51 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -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;