diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2023-08-29 06:35:06 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@linaro.org> | 2023-08-29 06:41:21 +0000 |
commit | acaf9e333dbc2eb811848c169f95ec7a8ca0e2e7 (patch) | |
tree | fd8d385f6d09616e6a255f883996ce38d2c1fca9 | |
parent | 58a48781efa31e08b570f035fbceaaa8018c3412 (diff) | |
download | gcc-acaf9e333dbc2eb811848c169f95ec7a8ca0e2e7.zip gcc-acaf9e333dbc2eb811848c169f95ec7a8ca0e2e7.tar.gz gcc-acaf9e333dbc2eb811848c169f95ec7a8ca0e2e7.tar.bz2 |
arm: Fix bootstrap / add missing initializer in MVE type_suffixes
My recent patch r14-3519-g9bae37ec8dc320 (arm: [MVE intrinsics] add
support for p8 and p16 polynomial types) added a new member to
type_suffix_info, but I forgot to add the corresponding initializer to
type_suffixes.
Committed as obvious.
2023-08-29 Christophe Lyon <christophe.lyon@linaro.org>
gcc/
* config/arm/arm-mve-builtins.cc (type_suffixes): Add missing
initializer.
-rw-r--r-- | gcc/config/arm/arm-mve-builtins.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm-mve-builtins.cc b/gcc/config/arm/arm-mve-builtins.cc index fa8b0ad..02dc8fa 100644 --- a/gcc/config/arm/arm-mve-builtins.cc +++ b/gcc/config/arm/arm-mve-builtins.cc @@ -132,7 +132,7 @@ CONSTEXPR const type_suffix_info type_suffixes[NUM_TYPE_SUFFIXES + 1] = { 0, \ MODE }, #include "arm-mve-builtins.def" - { "", NUM_VECTOR_TYPES, TYPE_bool, 0, 0, false, false, false, + { "", NUM_VECTOR_TYPES, TYPE_bool, 0, 0, false, false, false, false, 0, VOIDmode } }; |