diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-15 18:11:06 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-15 18:11:06 +0000 |
commit | bb5529bb624ab922def08f24f5201b9fd83bb094 (patch) | |
tree | ed3b913e450663800e100cf6fbedf2d37a3e9f60 /target-sparc/op.c | |
parent | 54728ac6dbcda62910d37c9f71967e3c21ca33e4 (diff) |
Convert ldfsr and stfsr to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4067 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/op.c')
-rw-r--r-- | target-sparc/op.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/target-sparc/op.c b/target-sparc/op.c index 79b669bf31..921699e4c0 100644 --- a/target-sparc/op.c +++ b/target-sparc/op.c @@ -285,16 +285,6 @@ void OPPROTO op_sdiv_T1_T0(void) #endif #endif -void OPPROTO op_ldfsr(void) -{ - PUT_FSR32(env, *((uint32_t *) &FT0)); -} - -void OPPROTO op_stfsr(void) -{ - *((uint32_t *) &FT0) = GET_FSR32(env); -} - #ifndef TARGET_SPARC64 /* XXX: use another pointer for %iN registers to avoid slow wrapping handling ? */ |