diff options
author | Richard Henderson <rth@twiddle.net> | 2013-02-19 23:52:06 -0800 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-02-23 17:25:29 +0000 |
commit | c9f10124a2704b6bab21b31e79735b18d414a654 (patch) | |
tree | ef1c829e8c9a78295923de916610620bb4359bf5 /target-arm/helper.c | |
parent | 831d7fe800774db0d7142fdf2a8f8758c8bf9c92 (diff) | |
download | qemu-c9f10124a2704b6bab21b31e79735b18d414a654.tar.gz qemu-c9f10124a2704b6bab21b31e79735b18d414a654.tar.bz2 qemu-c9f10124a2704b6bab21b31e79735b18d414a654.zip |
target-arm: Use mul[us]2 and add2 in umlal et al
Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
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 e63da57a51..e97e1a59c7 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -2893,11 +2893,6 @@ uint32_t HELPER(sel_flags)(uint32_t flags, uint32_t a, uint32_t b) return (a & mask) | (b & ~mask); } -uint32_t HELPER(logicq_cc)(uint64_t val) -{ - return (val >> 32) | (val != 0); -} - /* VFP support. We follow the convention used for VFP instructions: Single precision routines have a "s" suffix, double precision a "d" suffix. */ |