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 <pan2.li@intel.com>

gcc/ChangeLog:

	* config/riscv/vector.md: Fix typo.
This commit is contained in:
Pan Li
2023-07-03 15:59:03 +08:00
parent 738808bd9a
commit f58819c9aa

View File

@@ -496,8 +496,8 @@
(match_test "INTVAL (operands[9]) == riscv_vector::FRM_RMM")
(const_string "rmm")
(match_test "INTVAL (operands[9]) == riscv_vector::FRM_RDN")
(const_string "rdn")
(match_test "INTVAL (operands[9]) == riscv_vector::FRM_DYN")
(const_string "dyn")
]
(const_string "none")
)