Skip to content

Commit f58819c

Browse files
RISC-V: Fix one typo of FRM dynamic definition
This patch would like to fix one typo that take rdn instead of dyn by mistake. Signed-off-by: Pan Li <[email protected]> gcc/ChangeLog: * config/riscv/vector.md: Fix typo.
1 parent 738808b commit f58819c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gcc/config/riscv/vector.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,8 @@
496496
(match_test "INTVAL (operands[9]) == riscv_vector::FRM_RMM")
497497
(const_string "rmm")
498498

499-
(match_test "INTVAL (operands[9]) == riscv_vector::FRM_RDN")
500-
(const_string "rdn")
499+
(match_test "INTVAL (operands[9]) == riscv_vector::FRM_DYN")
500+
(const_string "dyn")
501501
]
502502
(const_string "none")
503503
)

0 commit comments

Comments
 (0)