diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-19 18:38:40 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-19 18:38:40 +0000 |
commit | caa88be0f59c4b518a29b9e2706b537e675a5e5c (patch) | |
tree | 07f9587dfae9180bbaf115d55c96e289f0b64af5 /target-mips | |
parent | a16336e4792c4f092bd2fdcd20c9d70c979b2b22 (diff) |
Remove now-dead code.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4754 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/op.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index 5e778f2b37..89ee9ce458 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -27,26 +27,6 @@ #ifndef CALL_FROM_TB0 #define CALL_FROM_TB0(func) func() #endif -#ifndef CALL_FROM_TB1 -#define CALL_FROM_TB1(func, arg0) func(arg0) -#endif -#ifndef CALL_FROM_TB1_CONST16 -#define CALL_FROM_TB1_CONST16(func, arg0) CALL_FROM_TB1(func, arg0) -#endif -#ifndef CALL_FROM_TB2 -#define CALL_FROM_TB2(func, arg0, arg1) func(arg0, arg1) -#endif -#ifndef CALL_FROM_TB2_CONST16 -#define CALL_FROM_TB2_CONST16(func, arg0, arg1) \ - CALL_FROM_TB2(func, arg0, arg1) -#endif -#ifndef CALL_FROM_TB3 -#define CALL_FROM_TB3(func, arg0, arg1, arg2) func(arg0, arg1, arg2) -#endif -#ifndef CALL_FROM_TB4 -#define CALL_FROM_TB4(func, arg0, arg1, arg2, arg3) \ - func(arg0, arg1, arg2, arg3) -#endif /* Load and store */ #define MEMSUFFIX _raw @@ -288,10 +268,3 @@ void op_mulshiu (void) } #endif /* TARGET_LONG_BITS > HOST_LONG_BITS */ - -/* CP1 functions */ -#if 0 -# define DEBUG_FPU_STATE() CALL_FROM_TB1(dump_fpu, env) -#else -# define DEBUG_FPU_STATE() do { } while(0) -#endif |