diff options
author | Haochen Gui <guihaoc@gcc.gnu.org> | 2024-08-06 14:15:05 +0800 |
---|---|---|
committer | Haochen Gui <guihaoc@gcc.gnu.org> | 2024-08-06 14:16:15 +0800 |
commit | 3592d3f8cc4b89ae508c747a46a626d73cb9616d (patch) | |
tree | e94f60cec6fc09412e49599cebaf921e627d1835 | |
parent | 4cb07a38233aadb4b389a6e5236c95f52241b6e0 (diff) | |
download | gcc-3592d3f8cc4b89ae508c747a46a626d73cb9616d.zip gcc-3592d3f8cc4b89ae508c747a46a626d73cb9616d.tar.gz gcc-3592d3f8cc4b89ae508c747a46a626d73cb9616d.tar.bz2 |
rs6000: Add const_vector into any_operand predicate
gcc/
* config/rs6000/predicates.md (any_operand): Add const_vector.
-rw-r--r-- | gcc/config/rs6000/predicates.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/predicates.md b/gcc/config/rs6000/predicates.md index d23ce9a..cdfd400 100644 --- a/gcc/config/rs6000/predicates.md +++ b/gcc/config/rs6000/predicates.md @@ -19,7 +19,7 @@ ;; Return 1 for anything except PARALLEL. (define_predicate "any_operand" - (match_code "const_int,const_double,const_wide_int,const,symbol_ref,label_ref,subreg,reg,mem")) + (match_code "const_int,const_double,const_wide_int,const_vector,const,symbol_ref,label_ref,subreg,reg,mem")) ;; Return 1 for any PARALLEL. (define_predicate "any_parallel_operand" |