diff options
author | Richard Biener <rguenther@suse.de> | 2022-11-22 09:03:53 +0100 |
---|---|---|
committer | Richard Biener <rguenther@suse.de> | 2022-11-22 09:05:18 +0100 |
commit | 09b7993ab6d93716f77c03ff9a9165fa4b579f0d (patch) | |
tree | e1fb8ee394797931e5f51a87e3037f9692a9464a /gcc/tree-vect-stmts.cc | |
parent | 1a06ae6f2f4f292fd05a900bcf433cb4282da1e3 (diff) | |
download | gcc-09b7993ab6d93716f77c03ff9a9165fa4b579f0d.zip gcc-09b7993ab6d93716f77c03ff9a9165fa4b579f0d.tar.gz gcc-09b7993ab6d93716f77c03ff9a9165fa4b579f0d.tar.bz2 |
tree-optimization/107672 - avoid vector mode type_for_mode call
The following avoids using type_for_mode on vector modes which might
not work for all frontends. Instead we look for the inner mode
type and use build_vector_type_for_mode instead.
PR tree-optimization/107672
* tree-vect-stmts.cc (supportable_widening_operation): Avoid
type_for_mode on vector modes.
Diffstat (limited to 'gcc/tree-vect-stmts.cc')
-rw-r--r-- | gcc/tree-vect-stmts.cc | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gcc/tree-vect-stmts.cc b/gcc/tree-vect-stmts.cc index bc0ef13..b35b986 100644 --- a/gcc/tree-vect-stmts.cc +++ b/gcc/tree-vect-stmts.cc @@ -12195,9 +12195,15 @@ supportable_widening_operation (vec_info *vinfo, intermediate_type = vect_halve_mask_nunits (prev_type, intermediate_mode); else - intermediate_type - = lang_hooks.types.type_for_mode (intermediate_mode, - TYPE_UNSIGNED (prev_type)); + { + gcc_assert (VECTOR_MODE_P (intermediate_mode)); + tree intermediate_element_type + = lang_hooks.types.type_for_mode (GET_MODE_INNER (intermediate_mode), + TYPE_UNSIGNED (prev_type)); + intermediate_type + = build_vector_type_for_mode (intermediate_element_type, + intermediate_mode); + } if (VECTOR_BOOLEAN_TYPE_P (intermediate_type) && VECTOR_BOOLEAN_TYPE_P (prev_type) |