https://gcc.gnu.org/g:4645aa79a6dfe39cb58d21ee251bfde59a6b27d4
commit r15-3545-g4645aa79a6dfe39cb58d21ee251bfde59a6b27d4 Author: Eric Botcazou <ebotca...@adacore.com> Date: Mon Sep 9 12:23:42 2024 +0200 Remove problematic declaration for 32-bit targets gcc/testsuite PR ada/115246 * gnat.dg/alignment14.adb (My_Int2): Delete. (Arr2): Likewise. Diff: --- gcc/testsuite/gnat.dg/alignment14.adb | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gcc/testsuite/gnat.dg/alignment14.adb b/gcc/testsuite/gnat.dg/alignment14.adb index 48ef6bd14e60..a5890a91148e 100644 --- a/gcc/testsuite/gnat.dg/alignment14.adb +++ b/gcc/testsuite/gnat.dg/alignment14.adb @@ -7,11 +7,6 @@ procedure Alignment14 is type Arr1 is array (1 .. 2) of My_Int1; - type My_Int2 is new Integer; - for My_Int2'Alignment use 16; - - type Arr2 is array (1 .. 2) of My_Int2; - begin null; end Alignment14;