diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-01 20:57:22 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-01 20:57:22 +0000 |
commit | 6eea7aff2a67ac5c8f25824560cbbc0b598d7a44 (patch) | |
tree | d73391b5971c6c088a383a03dc2be2def07a0bc7 /gcc/optabs.c | |
parent | 1e1a4c8c01aaeaeab9ebfb0dcf901542f968339c (diff) | |
download | gcc-6eea7aff2a67ac5c8f25824560cbbc0b598d7a44.tar.gz |
PR 19696
* optabs.c (expand_copysign_absneg): Export.
* optabs.h (expand_copysign_absneg): Declare.
* config/rs6000/rs6000.md (copysigntf3): New.
* gcc.c-torture/execute/ieee/copysign1.c: Special case sizeof
long double for ibm double-double format.
* gcc.c-torture/execute/ieee/copysign2.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94559 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index dd3232b499c..889f9156dd1 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -2662,7 +2662,7 @@ expand_abs (enum machine_mode mode, rtx op0, rtx target, is that we have a split register file, and leaving op0 in fp registers, and not playing with subregs so much, will help the register allocator. */ -static rtx +rtx expand_copysign_absneg (enum machine_mode mode, rtx op0, rtx op1, rtx target, int bitpos, bool op0_is_abs) { |