From: Eric Botcazou Date: Mon, 9 Sep 2024 10:23:42 +0000 (+0200) Subject: Remove problematic declaration for 32-bit targets X-Git-Tag: basepoints/gcc-16~6008 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4645aa79a6dfe39cb58d21ee251bfde59a6b27d4;p=thirdparty%2Fgcc.git Remove problematic declaration for 32-bit targets gcc/testsuite PR ada/115246 * gnat.dg/alignment14.adb (My_Int2): Delete. (Arr2): Likewise. --- diff --git a/gcc/testsuite/gnat.dg/alignment14.adb b/gcc/testsuite/gnat.dg/alignment14.adb index 48ef6bd14e6..a5890a91148 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;