From: Christophe Lyon Date: Wed, 23 Feb 2022 06:44:12 +0000 (+0000) Subject: arm: Fix typo in auto-vectorized MVE comparisons X-Git-Tag: basepoints/gcc-13~957 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd0ab7c734b04b91653467b94afd48ceca122083;p=thirdparty%2Fgcc.git arm: Fix typo in auto-vectorized MVE comparisons I made a last minute renaming of mve_const_bool_vec_to_hi () into mve_bool_vec_to_const () and forgot to update the call sites in vfp.md accordingly. Committed as obvious. 2022-02-23 Christophe Lyon gcc/ PR target/100757 PR target/101325 * config/arm/vfp.md (thumb2_movhi_vfp, thumb2_movhi_fp16): Fix typo. --- diff --git a/gcc/config/arm/vfp.md b/gcc/config/arm/vfp.md index f00d1cad3e9c..d0f423cc3c5e 100644 --- a/gcc/config/arm/vfp.md +++ b/gcc/config/arm/vfp.md @@ -89,7 +89,7 @@ return "mov%?\t%0, %1\t%@ movhi"; case 1: if (GET_MODE_CLASS (GET_MODE (operands[1])) == MODE_VECTOR_BOOL) - operands[1] = mve_const_bool_vec_to_hi (operands[1]); + operands[1] = mve_bool_vec_to_const (operands[1]); else operands[1] = gen_lowpart (HImode, operands[1]); return "mov%?\t%0, %1\t%@ movhi"; @@ -193,7 +193,7 @@ return "mov%?\t%0, %1\t%@ movhi"; case 1: if (GET_MODE_CLASS (GET_MODE (operands[1])) == MODE_VECTOR_BOOL) - operands[1] = mve_const_bool_vec_to_hi (operands[1]); + operands[1] = mve_bool_vec_to_const (operands[1]); else operands[1] = gen_lowpart (HImode, operands[1]); return "mov%?\t%0, %1\t%@ movhi";