diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-10-27 14:21:37 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-10-27 14:21:37 +0000 |
commit | 8a527317059bb6ece8a01a8d5be92b5452fa5ad0 (patch) | |
tree | 96b5a64d959f58115aeb5a958b0c775f647bc0eb /target-arm/helper.c | |
parent | 9bca81624ef9299b9a06013fd29cd6899079aab4 (diff) | |
parent | 8b279a60dc3ca53923701dfec6e54bea9d13cfb7 (diff) |
Merge branch 'target-arm.for-upstream' of git://git.linaro.org/people/pmaydell/qemu-arm
* 'target-arm.for-upstream' of git://git.linaro.org/people/pmaydell/qemu-arm:
target-arm: Remove out of date FIXME regarding saturating arithmetic
target-arm: Implement abs_i32 inline rather than as a helper
target-arm: Use TCG operation for Neon 64 bit negation
arm-semi.c: Handle get/put_user() failure accessing arguments
Diffstat (limited to 'target-arm/helper.c')
-rw-r--r-- | target-arm/helper.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-arm/helper.c b/target-arm/helper.c index 8f2cba6c1d..ab8b734933 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -1562,11 +1562,6 @@ uint32_t HELPER(rbit)(uint32_t x) return x; } -uint32_t HELPER(abs)(uint32_t x) -{ - return ((int32_t)x < 0) ? -x : x; -} - #if defined(CONFIG_USER_ONLY) void do_interrupt (CPUARMState *env) |