diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-16 11:59:40 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-16 11:59:40 +0000 |
commit | 69d357286d0ab5a852e827dad1dc4b05917aaaa8 (patch) | |
tree | dbf5fae9642821155fdb93539c266e7c5dc12406 /target-mips/op.c | |
parent | 100ce98812c2624a7e7922055d80ebbd81e8caa9 (diff) |
More generic 64 bit multiplication support, by Aurelien Jarno.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2821 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op.c')
-rw-r--r-- | target-mips/op.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index ddc3cdea59..1188e82846 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -874,13 +874,13 @@ void op_msubu (void) #ifdef TARGET_MIPS64 void op_dmult (void) { - CALL_FROM_TB0(do_dmult); + CALL_FROM_TB4(muls64, &(env->HI), &(env->LO), T0, T1); RETURN(); } void op_dmultu (void) { - CALL_FROM_TB0(do_dmultu); + CALL_FROM_TB4(mulu64, &(env->HI), &(env->LO), T0, T1); RETURN(); } #endif |