aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/rs6000/rs6000.md
diff options
context:
space:
mode:
authorDavid Edelsohn <edelsohn@gnu.org>2005-11-16 15:59:27 +0000
committerDavid Edelsohn <edelsohn@gnu.org>2005-11-16 15:59:27 +0000
commitf66587bc152331980fc42b20a2d952f7def2eff2 (patch)
treec17d43e8a7bb3ce4036e30bc924f210bb0efa6c0 /gcc/config/rs6000/rs6000.md
parentefde4f8477ad8a672fdb8733fd77c50acc42e5f9 (diff)
PR target/24772
* config/rs6000/predicates.md (vrsave_operation): SET_SRC is a VEC. * config/rs6000/rs6000.md (btruncsf2, ceilsf2, floorsf2, roundsf2): Remove "s" from mnemonic. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@107085 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rs6000/rs6000.md')
-rw-r--r--gcc/config/rs6000/rs6000.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md
index ee9cc427524..935775aef3f 100644
--- a/gcc/config/rs6000/rs6000.md
+++ b/gcc/config/rs6000/rs6000.md
@@ -5332,7 +5332,7 @@
[(set (match_operand:SF 0 "gpc_reg_operand" "=f")
(unspec:SF [(match_operand:SF 1 "gpc_reg_operand" "f")] UNSPEC_FRIZ))]
"TARGET_FPRND && TARGET_HARD_FLOAT && TARGET_FPRS"
- "frizs %0,%1"
+ "friz %0,%1"
[(set_attr "type" "fp")])
(define_insn "ceildf2"
@@ -5343,10 +5343,10 @@
[(set_attr "type" "fp")])
(define_insn "ceilsf2"
- [(set (match_operand:SF 0 "gpc_reg_operand" "=f")
+ [(set (match_operand:SF 0 "gpc_reg_operand" "=f")
(unspec:SF [(match_operand:SF 1 "gpc_reg_operand" "f")] UNSPEC_FRIP))]
"TARGET_FPRND && TARGET_HARD_FLOAT && TARGET_FPRS"
- "frips %0,%1"
+ "frip %0,%1"
[(set_attr "type" "fp")])
(define_insn "floordf2"
@@ -5360,7 +5360,7 @@
[(set (match_operand:SF 0 "gpc_reg_operand" "=f")
(unspec:SF [(match_operand:SF 1 "gpc_reg_operand" "f")] UNSPEC_FRIM))]
"TARGET_FPRND && TARGET_HARD_FLOAT && TARGET_FPRS"
- "frims %0,%1"
+ "frim %0,%1"
[(set_attr "type" "fp")])
(define_insn "rounddf2"
@@ -5374,7 +5374,7 @@
[(set (match_operand:SF 0 "gpc_reg_operand" "=f")
(unspec:SF [(match_operand:SF 1 "gpc_reg_operand" "f")] UNSPEC_FRIN))]
"TARGET_FPRND && TARGET_HARD_FLOAT && TARGET_FPRS"
- "frins %0,%1"
+ "frin %0,%1"
[(set_attr "type" "fp")])
; An UNSPEC is used so we don't have to support SImode in FP registers.