diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-16 16:33:01 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-16 16:33:01 +0000 |
commit | d78f399542b0b81fab67f31c9a88665943f0571d (patch) | |
tree | 78000d67343db1e17e038986d492d6918d335d18 /target-sparc/helper.c | |
parent | 7f70c93716412b0874ae231c2f5416edccb22e7f (diff) |
Delete some unused macros detected with -Wp,-Wunused-macros use
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6856 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/helper.c')
-rw-r--r-- | target-sparc/helper.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target-sparc/helper.c b/target-sparc/helper.c index 7a2ac21d06..b39b16272b 100644 --- a/target-sparc/helper.c +++ b/target-sparc/helper.c @@ -1366,8 +1366,6 @@ void sparc_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)) "fpu_version mmu_version nwindows\n"); } -#define GET_FLAG(a,b) ((env->psr & a)?b:'-') - void cpu_dump_state(CPUState *env, FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...), int flags) @@ -1411,6 +1409,9 @@ void cpu_dump_state(CPUState *env, FILE *f, env->cansave, env->canrestore, env->otherwin, env->wstate, env->cleanwin, env->nwindows - 1 - env->cwp); #else + +#define GET_FLAG(a,b) ((env->psr & a)?b:'-') + cpu_fprintf(f, "psr: 0x%08x -> %c%c%c%c %c%c%c wim: 0x%08x\n", GET_PSR(env), GET_FLAG(PSR_ZERO, 'Z'), GET_FLAG(PSR_OVF, 'V'), GET_FLAG(PSR_NEG, 'N'), GET_FLAG(PSR_CARRY, 'C'), |