fix the prototype of muls64/mulu64
authorLijun Pan <ljp@linux.ibm.com>
Wed, 1 Jul 2020 23:43:44 +0000 (18:43 -0500)
committerLaurent Vivier <laurent@vivier.eu>
Mon, 6 Jul 2020 16:13:13 +0000 (18:13 +0200)
The prototypes of muls64/mulu64 in host-utils.h should match the
definitions in host-utils.c

Signed-off-by: Lijun Pan <ljp@linux.ibm.com>
Message-Id: <20200701234344.91843-10-ljp@linux.ibm.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
include/qemu/host-utils.h

index 4cd170e6cd533fae0250ae3c9a933c3296dbf4cf..cdca2991d8a89774f3ef5f5c80e9c356519a6e8b 100644 (file)
@@ -77,8 +77,8 @@ static inline int divs128(int64_t *plow, int64_t *phigh, int64_t divisor)
     }
 }
 #else
-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);
+void muls64(uint64_t *plow, uint64_t *phigh, int64_t a, int64_t b);
+void mulu64(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b);
 int divu128(uint64_t *plow, uint64_t *phigh, uint64_t divisor);
 int divs128(int64_t *plow, int64_t *phigh, int64_t divisor);