diff options
author | Victor Do Nascimento <victor.donascimento@arm.com> | 2024-06-05 10:55:06 +0100 |
---|---|---|
committer | Victor Do Nascimento <victor.donascimento@arm.com> | 2024-09-30 15:59:43 +0100 |
commit | fd35d99914051c9c58b91b167f4802c8db460038 (patch) | |
tree | 6d6a4d7aa0803df4d9ed249ddc0f42d76adeffec /gcc | |
parent | 113e31cc32450fffbb7cc9b72c8d597b29ad9f0e (diff) | |
download | gcc-fd35d99914051c9c58b91b167f4802c8db460038.zip gcc-fd35d99914051c9c58b91b167f4802c8db460038.tar.gz gcc-fd35d99914051c9c58b91b167f4802c8db460038.tar.bz2 |
c6x: Adjust dot-product backend patterns
Following the migration of the dot_prod optab from a direct to a
conversion-type optab, ensure all back-end patterns incorporate the
second machine mode into pattern names.
gcc/ChangeLog:
* config/c6x/c6x.md (sdot_prodv2hi): Renamed to...
(sdot_prodsiv2hi): ...this.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/c6x/c6x.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/c6x/c6x.md b/gcc/config/c6x/c6x.md index 5964dd6..ea9ffe8 100644 --- a/gcc/config/c6x/c6x.md +++ b/gcc/config/c6x/c6x.md @@ -3082,7 +3082,7 @@ ;; Widening vector multiply and dot product. ;; See c6x-mult.md.in for the define_insn patterns -(define_expand "sdot_prodv2hi" +(define_expand "sdot_prodsiv2hi" [(match_operand:SI 0 "register_operand" "") (match_operand:V2HI 1 "register_operand" "") (match_operand:V2HI 2 "register_operand" "") |