aboutsummaryrefslogtreecommitdiff
path: root/target-alpha/exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'target-alpha/exec.h')
-rw-r--r--target-alpha/exec.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/target-alpha/exec.h b/target-alpha/exec.h
index 99c6e95..99b3131 100644
--- a/target-alpha/exec.h
+++ b/target-alpha/exec.h
@@ -29,29 +29,10 @@
register struct CPUAlphaState *env asm(AREG0);
-#if TARGET_LONG_BITS > HOST_LONG_BITS
-
-/* no registers can be used */
-#define T0 (env->t0)
-#define T1 (env->t1)
-
-#else
-
-register uint64_t T0 asm(AREG1);
-register uint64_t T1 asm(AREG2);
-
-#endif /* TARGET_LONG_BITS > HOST_LONG_BITS */
-
#define PARAM(n) ((uint64_t)PARAM##n)
#define SPARAM(n) ((int32_t)PARAM##n)
#define FP_STATUS (env->fp_status)
-#if defined (DEBUG_OP)
-#define RETURN() __asm__ __volatile__("nop" : : : "memory");
-#else
-#define RETURN() __asm__ __volatile__("" : : : "memory");
-#endif
-
#include "cpu.h"
#include "exec-all.h"