aboutsummaryrefslogtreecommitdiff
path: root/target-sparc/op.c
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-18 18:08:25 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-18 18:08:25 +0000
commitd35527d9f9ca7b0c99de06eb720cb35ee56ac5f6 (patch)
treecd85b4f8ba93fff68c95339bb405eac115d82411 /target-sparc/op.c
parent1f5063fb9756805efcd8c5a438ab747f36f796d9 (diff)
Convert CCR and CWP ops to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4086 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/op.c')
-rw-r--r--target-sparc/op.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/target-sparc/op.c b/target-sparc/op.c
index bf62224dc9..e9e735a9ea 100644
--- a/target-sparc/op.c
+++ b/target-sparc/op.c
@@ -258,28 +258,6 @@ void OPPROTO op_restore(void)
FORCE_RET();
}
#else
-void OPPROTO op_rdccr(void)
-{
- T0 = GET_CCR(env);
-}
-
-void OPPROTO op_wrccr(void)
-{
- PUT_CCR(env, T0);
-}
-
-// CWP handling is reversed in V9, but we still use the V8 register
-// order.
-void OPPROTO op_rdcwp(void)
-{
- T0 = GET_CWP64(env);
-}
-
-void OPPROTO op_wrcwp(void)
-{
- PUT_CWP64(env, T0);
-}
-
/* XXX: use another pointer for %iN registers to avoid slow wrapping
handling ? */
void OPPROTO op_save(void)