]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
arm: Fix bootstrap / add missing initializer in MVE type_suffixes
authorChristophe Lyon <christophe.lyon@linaro.org>
Tue, 29 Aug 2023 06:35:06 +0000 (06:35 +0000)
committerChristophe Lyon <christophe.lyon@linaro.org>
Tue, 29 Aug 2023 06:41:21 +0000 (06:41 +0000)
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.

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

index fa8b0ad36b3a0288585a8e7cfde06ca3f6a6b68d..02dc8fa9b735b24843463170540a0f345cd64e58 100644 (file)
@@ -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 }
 };