aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2023-11-22 09:50:11 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2023-11-22 09:53:50 +0000
commit65bd6de0de57abc86931a5e0b9a8d453ad530004 (patch)
tree9f8a45eb22babc2ba194e1e475b7e37b5d8efece
parentfce367810149580da1bb0cb0c3cd4fb00b968f1c (diff)
downloadgcc-65bd6de0de57abc86931a5e0b9a8d453ad530004.zip
gcc-65bd6de0de57abc86931a5e0b9a8d453ad530004.tar.gz
gcc-65bd6de0de57abc86931a5e0b9a8d453ad530004.tar.bz2
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 <christophe.lyon@linaro.org> gcc/ChangeLog: * config/arm/arm-mve-builtins.cc (function_resolver::infer_pointer_type): Remove spurious line.
-rw-r--r--gcc/config/arm/arm-mve-builtins.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/config/arm/arm-mve-builtins.cc b/gcc/config/arm/arm-mve-builtins.cc
index a265cb0..dec163d 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;
}