diff options
author | liguang <lig.fnst@cn.fujitsu.com> | 2013-05-28 16:21:02 +0800 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-06-15 17:49:10 +0000 |
commit | 00f5e6f21ea55046173a8a106b7654036888e9b3 (patch) | |
tree | bb329a18bc4e8d3dba5889e1cdc9adcef7fedfad /target-i386/misc_helper.c | |
parent | a416561005da6e4f9903541486f53c2cbc3a428d (diff) | |
download | qemu-00f5e6f21ea55046173a8a106b7654036888e9b3.tar.gz qemu-00f5e6f21ea55046173a8a106b7654036888e9b3.tar.bz2 qemu-00f5e6f21ea55046173a8a106b7654036888e9b3.zip |
target-i386/helper: remove EDX macro
Signed-off-by: liguang <lig.fnst@cn.fujitsu.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-i386/misc_helper.c')
-rw-r--r-- | target-i386/misc_helper.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target-i386/misc_helper.c b/target-i386/misc_helper.c index b0afffe72b..380e54e263 100644 --- a/target-i386/misc_helper.c +++ b/target-i386/misc_helper.c @@ -126,7 +126,7 @@ void helper_cpuid(CPUX86State *env) env->regs[R_EAX] = eax; env->regs[R_EBX] = ebx; env->regs[R_ECX] = ecx; - EDX = edx; + env->regs[R_EDX] = edx; } #if defined(CONFIG_USER_ONLY) @@ -235,7 +235,7 @@ void helper_rdtsc(CPUX86State *env) val = cpu_get_tsc(env) + env->tsc_offset; env->regs[R_EAX] = (uint32_t)(val); - EDX = (uint32_t)(val >> 32); + env->regs[R_EDX] = (uint32_t)(val >> 32); } void helper_rdtscp(CPUX86State *env) @@ -271,7 +271,7 @@ void helper_wrmsr(CPUX86State *env) cpu_svm_check_intercept_param(env, SVM_EXIT_MSR, 1); - val = ((uint32_t)env->regs[R_EAX]) | ((uint64_t)((uint32_t)EDX) << 32); + val = ((uint32_t)env->regs[R_EAX]) | ((uint64_t)((uint32_t)env->regs[R_EDX]) << 32); switch ((uint32_t)env->regs[R_ECX]) { case MSR_IA32_SYSENTER_CS: @@ -549,7 +549,7 @@ void helper_rdmsr(CPUX86State *env) break; } env->regs[R_EAX] = (uint32_t)(val); - EDX = (uint32_t)(val >> 32); + env->regs[R_EDX] = (uint32_t)(val >> 32); } #endif |