diff options
author | Christophe Lyon <christophe.lyon@arm.com> | 2022-03-04 15:44:15 +0100 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@arm.com> | 2022-03-08 21:21:03 +0100 |
commit | 768956c0d115766fe7e1168d420310182ae48d9f (patch) | |
tree | a3ab8ca6684187af7e854a5c4a7cbfa5c85fd76e /gcc | |
parent | 34b45cc5266db9e4098df43bec898625a6004b77 (diff) | |
download | gcc-768956c0d115766fe7e1168d420310182ae48d9f.zip gcc-768956c0d115766fe7e1168d420310182ae48d9f.tar.gz gcc-768956c0d115766fe7e1168d420310182ae48d9f.tar.bz2 |
arm: Remove unused variable arm_binop_none_none_unone_qualifiers
Commits r12-7342 and r12-7344 made some cleanup, leaving
arm_binop_none_none_unone_qualifiers unused.
This is causing build failures with -Werror (eg bootstrap).
This patch fixes the problem by removing the definition of
arm_binop_none_none_unone_qualifiers and
BINOP_NONE_NONE_UNONE_QUALIFIERS which are now unused.
Tested by bootstraping on arm-linux-gnueaibhf.
2022-03-04 Christophe Lyon <christophe.lyon@arm.com>
gcc/
* config/arm/arm-builtins.cc
(arm_binop_none_none_unone_qualifiers): Delete.
(BINOP_NONE_NONE_UNONE_QUALIFIERS): Delete.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/arm/arm-builtins.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/config/arm/arm-builtins.cc b/gcc/config/arm/arm-builtins.cc index 6c0b1bd..36a40a1 100644 --- a/gcc/config/arm/arm-builtins.cc +++ b/gcc/config/arm/arm-builtins.cc @@ -433,12 +433,6 @@ arm_binop_unone_none_imm_qualifiers[SIMD_MAX_BUILTIN_ARGS] (arm_binop_unone_none_imm_qualifiers) static enum arm_type_qualifiers -arm_binop_none_none_unone_qualifiers[SIMD_MAX_BUILTIN_ARGS] - = { qualifier_none, qualifier_none, qualifier_unsigned }; -#define BINOP_NONE_NONE_UNONE_QUALIFIERS \ - (arm_binop_none_none_unone_qualifiers) - -static enum arm_type_qualifiers arm_binop_pred_none_none_qualifiers[SIMD_MAX_BUILTIN_ARGS] = { qualifier_predicate, qualifier_none, qualifier_none }; #define BINOP_PRED_NONE_NONE_QUALIFIERS \ |