diff options
Diffstat (limited to 'target-mips/op.c')
-rw-r--r-- | target-mips/op.c | 24 |
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" |