diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-25 07:34:38 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-25 07:34:38 -0500 |
commit | 59e6092731b6cb014c40f735f7e2f0bb3d8cb74b (patch) | |
tree | 934d205396a520986942d0ddf0920451d35bf469 /gcc | |
parent | a2d353e50cec8279fba0f9905efc38839e6cfce9 (diff) | |
download | gcc-59e6092731b6cb014c40f735f7e2f0bb3d8cb74b.zip gcc-59e6092731b6cb014c40f735f7e2f0bb3d8cb74b.tar.gz gcc-59e6092731b6cb014c40f735f7e2f0bb3d8cb74b.tar.bz2 |
(neg[sd]f2): Use %R1 consistently.
From-SVN: r6623
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/alpha/alpha.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 15b05f4..8e9c968 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -906,14 +906,14 @@ [(set (match_operand:SF 0 "register_operand" "=f") (neg:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")))] "TARGET_FP" - "cpysn %1,%R1,%0" + "cpysn %R1,%R1,%0" [(set_attr "type" "fpop")]) (define_insn "negdf2" [(set (match_operand:DF 0 "register_operand" "=f") (neg:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")))] "TARGET_FP" - "cpysn %1,%R1,%0" + "cpysn %R1,%R1,%0" [(set_attr "type" "fpop")]) (define_insn "addsf3" |