diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-07-30 15:50:22 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-08-28 07:17:08 +0000 |
commit | e5b34f37793dc239c2f65442046e12a5dd7b61ec (patch) | |
tree | 5efb4ad1b9888857b9bf999dc2d8d5497429875e /dyngen-exec.h | |
parent | 97a3f6ffbba66250d9a6f1ba7f8444f6bb8c6676 (diff) | |
download | qemu-e5b34f37793dc239c2f65442046e12a5dd7b61ec.tar.gz qemu-e5b34f37793dc239c2f65442046e12a5dd7b61ec.tar.bz2 qemu-e5b34f37793dc239c2f65442046e12a5dd7b61ec.zip |
dyngen-exec.h: cleanup
Remove unused or otherwise available stuff.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'dyngen-exec.h')
-rw-r--r-- | dyngen-exec.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/dyngen-exec.h b/dyngen-exec.h index cc1e4fb09d..8beb7f3344 100644 --- a/dyngen-exec.h +++ b/dyngen-exec.h @@ -19,15 +19,6 @@ #if !defined(__DYNGEN_EXEC_H__) #define __DYNGEN_EXEC_H__ -#include "qemu-common.h" - -#ifdef __OpenBSD__ -#include <sys/types.h> -#endif - -/* XXX: This may be wrong for 64-bit ILP32 hosts. */ -typedef void * host_reg_t; - #if defined(__i386__) #define AREG0 "ebp" #elif defined(__x86_64__) @@ -66,11 +57,6 @@ typedef void * host_reg_t; register CPUState *env asm(AREG0); -#define xglue(x, y) x ## y -#define glue(x, y) xglue(x, y) -#define stringify(s) tostring(s) -#define tostring(s) #s - /* The return address may point to the start of the next instruction. Subtracting one gets us the call instruction itself. */ #if defined(__s390__) && !defined(__s390x__) |