From 3d95a524d4746ceb3065f92f30a5679afb88d16a Mon Sep 17 00:00:00 2001 From: Pan Li Date: Mon, 3 Jul 2023 15:59:03 +0800 Subject: [PATCH] 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 gcc/ChangeLog: * config/riscv/vector.md: Fix typo. --- gcc/config/riscv/vector.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/riscv/vector.md b/gcc/config/riscv/vector.md index a6174f9483e6..2864475b35ae 100644 --- a/gcc/config/riscv/vector.md +++ b/gcc/config/riscv/vector.md @@ -491,8 +491,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") ) -- 2.47.2