diff options
author | Roger Sayle <roger@eyesopen.com> | 2005-03-16 18:29:26 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2005-03-16 18:29:26 +0000 |
commit | 9abd1955da0d1717108ee06829f94a57908bcc38 (patch) | |
tree | 43897d52fbbd0eb9ee1c0eb42cd22fbab770b92d /gcc/optabs.c | |
parent | 455d8f0605b9e3c4f8760470471d22a43d01f531 (diff) | |
download | gcc-9abd1955da0d1717108ee06829f94a57908bcc38.zip gcc-9abd1955da0d1717108ee06829f94a57908bcc38.tar.gz gcc-9abd1955da0d1717108ee06829f94a57908bcc38.tar.bz2 |
optabs.c (expand_copysign_absneg): Make static.
* optabs.c (expand_copysign_absneg): Make static.
* optabs.h (expand_copysign_absneg): Delete prototype.
* config/rs6000/rs6000.md (copysigntf3): Delete pattern.
From-SVN: r96572
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 ccbf670..b2021f1 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -2678,7 +2678,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. */ -rtx +static rtx expand_copysign_absneg (enum machine_mode mode, rtx op0, rtx op1, rtx target, int bitpos, bool op0_is_abs) { |