aboutsummaryrefslogtreecommitdiff
path: root/target-mips/op.c
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-06 21:40:48 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-06 21:40:48 +0000
commitaaa9128a024df25dcd80c62b01fa72a4c0988b07 (patch)
tree7bc38f09782ece4e346420f9afa63100bc1d0de9 /target-mips/op.c
parent36271893ab4426ec7a0c73a9e843f1798e400fda (diff)
Convert some MIPS load/store instructions to TCG.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4369 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op.c')
-rw-r--r--target-mips/op.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/target-mips/op.c b/target-mips/op.c
index 00b779967e..07e057b744 100644
--- a/target-mips/op.c
+++ b/target-mips/op.c
@@ -247,30 +247,6 @@
#include "fop_template.c"
#undef FTN
-void op_load_HI (void)
-{
- T0 = env->HI[env->current_tc][PARAM1];
- FORCE_RET();
-}
-
-void op_store_HI (void)
-{
- env->HI[env->current_tc][PARAM1] = T0;
- FORCE_RET();
-}
-
-void op_load_LO (void)
-{
- T0 = env->LO[env->current_tc][PARAM1];
- FORCE_RET();
-}
-
-void op_store_LO (void)
-{
- env->LO[env->current_tc][PARAM1] = T0;
- FORCE_RET();
-}
-
/* Load and store */
#define MEMSUFFIX _raw
#include "op_mem.c"