From: Pan Li Date: Sat, 16 Aug 2025 08:01:40 +0000 (+0800) Subject: RISC-V: Add missed DONE for vx combine pattern [NFC] X-Git-Tag: basepoints/gcc-17~5573 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=756f771f58f79406a08b6d574939b70d895bb613;p=thirdparty%2Fgcc.git RISC-V: Add missed DONE for vx combine pattern [NFC] The previous patch missed the DONE indicator of the vx combine pattern. Thus add it back. gcc/ChangeLog: * config/riscv/autovec-opt.md: Add missed DONE for vx combine pattern. Signed-off-by: Pan Li --- diff --git a/gcc/config/riscv/autovec-opt.md b/gcc/config/riscv/autovec-opt.md index 4559d25ff73..f1e592b46b5 100644 --- a/gcc/config/riscv/autovec-opt.md +++ b/gcc/config/riscv/autovec-opt.md @@ -1694,6 +1694,8 @@ riscv_vector::expand_vx_binary_vec_dup_vec (operands[0], operands[2], operands[1], , mode); + + DONE; } [(set_attr "type" "vialu")]) @@ -1711,6 +1713,8 @@ riscv_vector::expand_vx_binary_vec_vec_dup (operands[0], operands[1], operands[2], , mode); + + DONE; } [(set_attr "type" "vialu")])