aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/rs6000/altivec.md
diff options
context:
space:
mode:
authorHartmut Penner <hpenner@de.ibm.com>2004-02-11 14:30:13 +0000
committerHartmut Penner <hpenner@de.ibm.com>2004-02-11 14:30:13 +0000
commitca13ce8263c5eca57c923800afe8543c96cf7a13 (patch)
tree78dac7391869909c80ed651b2d9ad91439e491c7 /gcc/config/rs6000/altivec.md
parent659c5df878998831fc54612d9e22aa141f630b49 (diff)
* config/rs6000/altivec.md (*movv4si_internal): At least one
operand must be register_operand. (*movv8hi_internal1): Likewise. (*movv16qi_internal1): Likewise. (*movv4sf_internal1): Likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@77654 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rs6000/altivec.md')
-rw-r--r--gcc/config/rs6000/altivec.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/config/rs6000/altivec.md b/gcc/config/rs6000/altivec.md
index 7eb632335f2..2ede79d9f5c 100644
--- a/gcc/config/rs6000/altivec.md
+++ b/gcc/config/rs6000/altivec.md
@@ -94,8 +94,8 @@
[(set (match_operand:V4SI 0 "nonimmediate_operand" "=m,v,v,o,r,r,v")
(match_operand:V4SI 1 "input_operand" "v,m,v,r,o,r,W"))]
"TARGET_ALTIVEC
- && (altivec_register_operand (operands[0], V4SImode)
- || altivec_register_operand (operands[1], V4SImode))"
+ && (register_operand (operands[0], V4SImode)
+ || register_operand (operands[1], V4SImode))"
"*
{
switch (which_alternative)
@@ -142,8 +142,8 @@
[(set (match_operand:V8HI 0 "nonimmediate_operand" "=m,v,v,o,r,r,v")
(match_operand:V8HI 1 "input_operand" "v,m,v,r,o,r,W"))]
"TARGET_ALTIVEC
- && (altivec_register_operand (operands[0], V8HImode)
- || altivec_register_operand (operands[1], V8HImode))"
+ && (register_operand (operands[0], V8HImode)
+ || register_operand (operands[1], V8HImode))"
"*
{
switch (which_alternative)
@@ -190,8 +190,8 @@
[(set (match_operand:V16QI 0 "nonimmediate_operand" "=m,v,v,o,r,r,v")
(match_operand:V16QI 1 "input_operand" "v,m,v,r,o,r,W"))]
"TARGET_ALTIVEC
- && (altivec_register_operand (operands[0], V16QImode)
- || altivec_register_operand (operands[1], V16QImode))"
+ && (register_operand (operands[0], V16QImode)
+ || register_operand (operands[1], V16QImode))"
"*
{
switch (which_alternative)
@@ -238,8 +238,8 @@
[(set (match_operand:V4SF 0 "nonimmediate_operand" "=m,v,v,o,r,r,v")
(match_operand:V4SF 1 "input_operand" "v,m,v,r,o,r,W"))]
"TARGET_ALTIVEC
- && (altivec_register_operand (operands[0], V4SFmode)
- || altivec_register_operand (operands[1], V4SFmode))"
+ && (register_operand (operands[0], V4SFmode)
+ || register_operand (operands[1], V4SFmode))"
"*
{
switch (which_alternative)