From: Christophe Lyon Date: Wed, 22 Nov 2023 09:50:11 +0000 (+0000) Subject: arm: [MVE intrinsics] Fix typo X-Git-Tag: basepoints/gcc-15~4388 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65bd6de0de57abc86931a5e0b9a8d453ad530004;p=thirdparty%2Fgcc.git arm: [MVE intrinsics] Fix typo In commt 0c2037d9d93a8f768cb11698ff794278246bb31f (Add support for contiguous loads and stores), I added a spurious line which broke bootstrap because of an unused variable error. This patch removes it. Committed as obvious. 2023-11-22 Christophe Lyon gcc/ChangeLog: * config/arm/arm-mve-builtins.cc (function_resolver::infer_pointer_type): Remove spurious line. --- diff --git a/gcc/config/arm/arm-mve-builtins.cc b/gcc/config/arm/arm-mve-builtins.cc index a265cb05553f..dec163dce4f5 100644 --- a/gcc/config/arm/arm-mve-builtins.cc +++ b/gcc/config/arm/arm-mve-builtins.cc @@ -1168,7 +1168,6 @@ function_resolver::infer_pointer_type (unsigned int argno) build_qualified_type (target, 0)); return NUM_TYPE_SUFFIXES; } - unsigned int bits = type_suffixes[type].element_bits; return type; }