]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
middle-end/102683 - fix .DEFERRED_INIT expansion
authorRichard Biener <rguenther@suse.de>
Mon, 11 Oct 2021 12:31:59 +0000 (14:31 +0200)
committerRichard Biener <rguenther@suse.de>
Mon, 11 Oct 2021 14:41:49 +0000 (16:41 +0200)
This avoids using an integer type for which we don't have an
approprate mode when expanding .DEFERRED_INIT to a non-memory
entity.

2021-10-11  Richard Biener  <rguenther@suse.de>

PR middle-end/102683
* internal-fn.c (expand_DEFERRED_INIT): Check for mode
availability before building an integer type for storage
purposes.

gcc/internal-fn.c

index 6bc256832f7ddd82e7f4e1b388dd55566e50de02..b3638192fb9062752a699410bda2600eb2c018e2 100644 (file)
@@ -3074,7 +3074,9 @@ expand_DEFERRED_INIT (internal_fn, gcall *stmt)
       tree init;
       if (tree_fits_uhwi_p (var_size)
          && (init_type == AUTO_INIT_PATTERN
-             || !is_gimple_reg_type (var_type)))
+             || !is_gimple_reg_type (var_type))
+         && int_mode_for_size (tree_to_uhwi (var_size) * BITS_PER_UNIT,
+                               0).exists ())
        {
          unsigned HOST_WIDE_INT total_bytes = tree_to_uhwi (var_size);
          unsigned char *buf = (unsigned char *) xmalloc (total_bytes);