Commit 05e1d83049e295383d40c5d9015c0e0f0f672baf
1 parent
084ed5cc
Fix muls64 prototype to match the actual implementation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3537 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
host-utils.h
... | ... | @@ -41,7 +41,7 @@ static always_inline void muls64 (uint64_t *plow, uint64_t *phigh, |
41 | 41 | : "a" (a), "0" (b)); |
42 | 42 | } |
43 | 43 | #else |
44 | -void muls64(int64_t *phigh, int64_t *plow, int64_t a, int64_t b); | |
44 | +void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b); | |
45 | 45 | void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b); |
46 | 46 | #endif |
47 | 47 | ... | ... |