From a366a40a7effd50925bca3f0254782084cde015c Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Sun, 23 May 1999 13:37:42 -0600 Subject: [multiple changes] Sun May 23 20:31:16 1999 Jeffrey A Law (law@cygnus.com) * loop.c (strength_reduce): Grow reg_single_usage as needed. Sun May 23 10:13:20 1999 David O'Brien * i386/freebsd-elf.h (LINK_SPEC): Change -static to -Bstatic. Also remove a useless comment. Sun May 23 10:05:23 1999 Jerry Quinn * pa.md (negdf2,negsf2): Use fneg instead of fsub on pa 2.0. From-SVN: r27111 --- gcc/config/pa/pa.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'gcc/config/pa/pa.md') diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 09294c4..05a1b97 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -3600,7 +3600,13 @@ [(set (match_operand:DF 0 "register_operand" "=f") (neg:DF (match_operand:DF 1 "register_operand" "f")))] "! TARGET_SOFT_FLOAT" - "fsub,dbl %%fr0,%1,%0" + "* +{ + if (TARGET_PA_20) + return \"fneg,dbl %1,%0\"; + else + return \"fsub,dbl %%fr0,%1,%0\"; +}" [(set_attr "type" "fpalu") (set_attr "length" "4")]) @@ -3608,7 +3614,13 @@ [(set (match_operand:SF 0 "register_operand" "=f") (neg:SF (match_operand:SF 1 "register_operand" "f")))] "! TARGET_SOFT_FLOAT" - "fsub,sgl %%fr0,%1,%0" + "* +{ + if (TARGET_PA_20) + return \"fneg,sgl %1,%0\"; + else + return \"fsub,sgl %%fr0,%1,%0\"; +}" [(set_attr "type" "fpalu") (set_attr "length" "4")]) -- cgit v1.1