]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
arm: [MVE intrinsics] Fix typo
authorChristophe Lyon <christophe.lyon@linaro.org>
Wed, 22 Nov 2023 09:50:11 +0000 (09:50 +0000)
committerChristophe Lyon <christophe.lyon@linaro.org>
Wed, 22 Nov 2023 09:53:50 +0000 (09:53 +0000)
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  <christophe.lyon@linaro.org>

gcc/ChangeLog:

* config/arm/arm-mve-builtins.cc
(function_resolver::infer_pointer_type): Remove spurious line.

gcc/config/arm/arm-mve-builtins.cc

index a265cb05553fc5e10b78a0a7fba369331c16e72c..dec163dce4f5326a89721fbfe845fac2f3420aa0 100644 (file)
@@ -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;
 }