pa.md (fmpynfadd,{sgl,dbl} insns): Use %fr0 rather than 0 to avoid assembler errors.

* config/pa/pa.md (fmpynfadd,{sgl,dbl} insns): Use %fr0 rather than 0
        to avoid assembler errors.

From-SVN: r30454
This commit is contained in:
Jason Eckhardt 1999-11-08 19:26:08 +00:00 committed by Jason Eckhardt
parent 6e30047279
commit 0429987682
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Mon Nov 8 13:16:46 1999 Jason Eckhardt <jle@cygnus.com>
* config/pa/pa.md (fmpynfadd,{sgl,dbl} insns): Use %fr0 rather than 0
to avoid assembler errors.
Mon Nov 8 15:38:41 1999 Nick Clifton <nickc@cygnus.com>
* config/v850/v850-protos.h: New file: Prototypes for functions

View File

@ -3963,7 +3963,7 @@
(neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
(match_operand:DF 2 "register_operand" "f"))))]
"! TARGET_SOFT_FLOAT && TARGET_PA_20"
"fmpynfadd,dbl %1,%2,0,%0"
"fmpynfadd,dbl %1,%2,%%fr0,%0"
[(set_attr "type" "fpmuldbl")
(set_attr "length" "4")])
@ -3972,7 +3972,7 @@
(neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
(match_operand:SF 2 "register_operand" "f"))))]
"! TARGET_SOFT_FLOAT && TARGET_PA_20"
"fmpynfadd,sgl %1,%2,0,%0"
"fmpynfadd,sgl %1,%2,%%fr0,%0"
[(set_attr "type" "fpmuldbl")
(set_attr "length" "4")])