summaryrefslogtreecommitdiff
path: root/target-sparc
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2009-06-06 02:54:03 +0100
committerPaul Brook <paul@codesourcery.com>2009-06-06 02:54:03 +0100
commit25517f999fbbaca4b63423c413629faa1f8eeb71 (patch)
tree93769a17dadf5a88a4658ee52b08481012c013b6 /target-sparc
parentdb241f403213807a3ab9ea9eb88649dcbf71dba4 (diff)
downloadqemu-25517f999fbbaca4b63423c413629faa1f8eeb71.tar.gz
Use correct type for SPARC cpu_cc_op
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'target-sparc')
-rw-r--r--target-sparc/translate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/target-sparc/translate.c b/target-sparc/translate.c
index cd22f2bf8f..6de40791b5 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;