diff options
author | Richard Henderson <rth@redhat.com> | 2005-02-01 12:57:22 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2005-02-01 12:57:22 -0800 |
commit | ca58f2bc5c2ad8d30514c32e2e0b5283d0486a3c (patch) | |
tree | d73391b5971c6c088a383a03dc2be2def07a0bc7 /gcc/optabs.h | |
parent | a1d13fa1672efeaf2886bb4184b6e73874c092ca (diff) | |
download | gcc-ca58f2bc5c2ad8d30514c32e2e0b5283d0486a3c.zip gcc-ca58f2bc5c2ad8d30514c32e2e0b5283d0486a3c.tar.gz gcc-ca58f2bc5c2ad8d30514c32e2e0b5283d0486a3c.tar.bz2 |
re PR other/19696 (gcc.c-torture/execute/ieee/copysign1.c: Unsatisfied symbols: copysignl)
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.
From-SVN: r94559
Diffstat (limited to 'gcc/optabs.h')
-rw-r--r-- | gcc/optabs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/optabs.h b/gcc/optabs.h index a378a96..613831a 100644 --- a/gcc/optabs.h +++ b/gcc/optabs.h @@ -455,6 +455,7 @@ extern rtx expand_abs (enum machine_mode, rtx, rtx, int, int); /* Expand the copysign operation. */ extern rtx expand_copysign (rtx, rtx, rtx); +extern rtx expand_copysign_absneg (enum machine_mode, rtx, rtx, rtx, int, bool); /* Generate an instruction with a given INSN_CODE with an output and an input. */ |