diff options
Diffstat (limited to 'target-alpha/op.c')
-rw-r--r-- | target-alpha/op.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target-alpha/op.c b/target-alpha/op.c index 957c651605..289fabf074 100644 --- a/target-alpha/op.c +++ b/target-alpha/op.c @@ -131,12 +131,6 @@ void OPPROTO op_no_op (void) RETURN(); } -void OPPROTO op_tb_flush (void) -{ - helper_tb_flush(); - RETURN(); -} - /* Load and stores */ #define MEMSUFFIX _raw #include "op_mem.h" @@ -685,27 +679,6 @@ void OPPROTO op_bcond (void) } #endif -#if 0 // Qemu does not know how to do this... -void OPPROTO op_update_pc (void) -{ - env->pc = PARAM(1); - RETURN(); -} -#else -void OPPROTO op_update_pc (void) -{ - env->pc = ((uint64_t)PARAM(1) << 32) | (uint64_t)PARAM(2); - RETURN(); -} -#endif - -/* Optimization for 32 bits hosts architectures */ -void OPPROTO op_update_pc32 (void) -{ - env->pc = (uint64_t)PARAM(1); - RETURN(); -} - /* IEEE floating point arithmetic */ /* S floating (single) */ void OPPROTO op_adds (void) |