diff options
author | ths | 2007-10-27 00:35:02 +0200 |
---|---|---|
committer | ths | 2007-10-27 00:35:02 +0200 |
commit | 5592a750b913c859c738eb2774c26632dcac8350 (patch) | |
tree | 54745b2164b81bdc447c769c48d89d928ce8cf82 /target-i386 | |
parent | Add const etc. to places forgotten from the previous commit (diff) | |
download | qemu-5592a750b913c859c738eb2774c26632dcac8350.tar.gz qemu-5592a750b913c859c738eb2774c26632dcac8350.tar.xz qemu-5592a750b913c859c738eb2774c26632dcac8350.zip |
The other half of the mul64 rework. Sorry for the breakage, I committed
an incomplete version of what I tested.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3454 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index c5d4487a62..88aa82e42a 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -3724,7 +3724,7 @@ void helper_mulq_EAX_T0(void) { uint64_t r0, r1; - mulu64(&r1, &r0, EAX, T0); + mulu64(&r0, &r1, EAX, T0); EAX = r0; EDX = r1; CC_DST = r0; @@ -3735,7 +3735,7 @@ void helper_imulq_EAX_T0(void) { uint64_t r0, r1; - muls64(&r1, &r0, EAX, T0); + muls64(&r0, &r1, EAX, T0); EAX = r0; EDX = r1; CC_DST = r0; @@ -3746,7 +3746,7 @@ void helper_imulq_T0_T1(void) { uint64_t r0, r1; - muls64(&r1, &r0, T0, T1); + muls64(&r0, &r1, T0, T1); T0 = r0; CC_DST = r0; CC_SRC = ((int64_t)r1 != ((int64_t)r0 >> 63)); |