Commit 25517f999fbbaca4b63423c413629faa1f8eeb71
1 parent
db241f40
Use correct type for SPARC cpu_cc_op
Signed-off-by: Paul Brook <paul@codesourcery.com>
Showing
1 changed file
with
2 additions
and
1 deletions
target-sparc/translate.c
| @@ -42,7 +42,8 @@ | @@ -42,7 +42,8 @@ | ||
| 42 | 42 | ||
| 43 | /* global register indexes */ | 43 | /* global register indexes */ |
| 44 | static TCGv_ptr cpu_env, cpu_regwptr; | 44 | static TCGv_ptr cpu_env, cpu_regwptr; |
| 45 | -static TCGv cpu_cc_src, cpu_cc_src2, cpu_cc_dst, cpu_cc_op; | 45 | +static TCGv cpu_cc_src, cpu_cc_src2, cpu_cc_dst; |
| 46 | +static TCGv_i32 cpu_cc_op; | ||
| 46 | static TCGv_i32 cpu_psr; | 47 | static TCGv_i32 cpu_psr; |
| 47 | static TCGv cpu_fsr, cpu_pc, cpu_npc, cpu_gregs[8]; | 48 | static TCGv cpu_fsr, cpu_pc, cpu_npc, cpu_gregs[8]; |
| 48 | static TCGv cpu_y; | 49 | static TCGv cpu_y; |