From 460a09c1fbf59754904a086977f5cc70f278f498 Mon Sep 17 00:00:00 2001 From: pbrook Date: Thu, 1 May 2008 12:04:35 +0000 Subject: Fix incorrect argument types. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4291 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-arm/helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'target-arm/helper.c') diff --git a/target-arm/helper.c b/target-arm/helper.c index 5d70ef193b..8e85435252 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -1985,7 +1985,7 @@ static inline uint8_t sub8_sat(uint8_t a, uint8_t b) #include "op_addsub.h" /* Unsigned saturating arithmetic. */ -static inline uint16_t add16_usat(uint16_t a, uint8_t b) +static inline uint16_t add16_usat(uint16_t a, uint16_t b) { uint16_t res; res = a + b; @@ -1994,7 +1994,7 @@ static inline uint16_t add16_usat(uint16_t a, uint8_t b) return res; } -static inline uint16_t sub16_usat(uint16_t a, uint8_t b) +static inline uint16_t sub16_usat(uint16_t a, uint16_t b) { if (a < b) return a - b; -- cgit v1.2.1