mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
Fix muls64 prototype to match the actual implementation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3537 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
084ed5cc90
commit
05e1d83049
@ -41,7 +41,7 @@ static always_inline void muls64 (uint64_t *plow, uint64_t *phigh,
|
||||
: "a" (a), "0" (b));
|
||||
}
|
||||
#else
|
||||
void muls64(int64_t *phigh, int64_t *plow, int64_t a, int64_t b);
|
||||
void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b);
|
||||
void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b);
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user