diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-29 16:38:41 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-29 16:38:41 +0000 |
commit | 75d0187a52af2afd92c6c7f34e3f089733946766 (patch) | |
tree | b924f8962609e67051596c8ec25de6ad127c05ff /target-sparc/exec.h | |
parent | NPTL host detection and futex syscall passthrough. (diff) | |
download | qemu-kvm-75d0187a52af2afd92c6c7f34e3f089733946766.tar.gz qemu-kvm-75d0187a52af2afd92c6c7f34e3f089733946766.tar.bz2 qemu-kvm-75d0187a52af2afd92c6c7f34e3f089733946766.zip |
Remove unused (for now) reg_REGWPTR (original patch by Glauber Costa)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4617 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/exec.h')
-rw-r--r-- | target-sparc/exec.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-sparc/exec.h b/target-sparc/exec.h index 3ef0cf9ac..c6ff9506f 100644 --- a/target-sparc/exec.h +++ b/target-sparc/exec.h @@ -4,7 +4,6 @@ #include "dyngen-exec.h" register struct CPUSPARCState *env asm(AREG0); -#define REGWPTR env->regwptr #define FT0 (env->ft0) #define FT1 (env->ft1) @@ -18,10 +17,6 @@ register struct CPUSPARCState *env asm(AREG0); static inline void env_to_regs(void) { -#if defined(reg_REGWPTR) - REGWPTR = env->regbase + (env->cwp * 16); - env->regwptr = REGWPTR; -#endif } static inline void regs_to_env(void) |