diff options
author | Richard Henderson <rth@twiddle.net> | 2010-04-12 16:12:20 -0700 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-04-27 05:50:41 +0200 |
commit | dc96be4b975d51f03d0b08e191fddf85b92c0267 (patch) | |
tree | 565ec50e67263ab8996407c2f49b88a42e12fcdb /target-alpha/op_helper.c | |
parent | caa972256d793359fddc57a54506d7645b3bf9e2 (diff) |
target-alpha: Implement cpys{, n, e} inline.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-alpha/op_helper.c')
-rw-r--r-- | target-alpha/op_helper.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c index dd1af849c4..ded71f689e 100644 --- a/target-alpha/op_helper.c +++ b/target-alpha/op_helper.c @@ -921,24 +921,6 @@ uint64_t helper_sqrtt (uint64_t a) return float64_to_t(fr); } - -/* Sign copy */ -uint64_t helper_cpys(uint64_t a, uint64_t b) -{ - return (a & 0x8000000000000000ULL) | (b & ~0x8000000000000000ULL); -} - -uint64_t helper_cpysn(uint64_t a, uint64_t b) -{ - return ((~a) & 0x8000000000000000ULL) | (b & ~0x8000000000000000ULL); -} - -uint64_t helper_cpyse(uint64_t a, uint64_t b) -{ - return (a & 0xFFF0000000000000ULL) | (b & ~0xFFF0000000000000ULL); -} - - /* Comparisons */ uint64_t helper_cmptun (uint64_t a, uint64_t b) { |