(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
compat/
pr102024_main.c
       1  /* { dg-require-effective-target int32plus } */
       2  /* { dg-options "-Wno-abi" } */
       3  /* { dg-options "-mno-mmx -Wno-abi" { target i?86-*-* x86_64-*-* } } */
       4  /* { dg-options "-fno-common" { target hppa*-*-hpux* powerpc*-*-darwin* } } */
       5  /* { dg-options "-mno-mmx -fno-common -Wno-abi" { target i?86-*-darwin* x86_64-*-darwin* } } */
       6  /* { dg-options "-mno-base-addresses" { target mmix-*-* } } */
       7  /* { dg-options "-mlongcalls -mtext-section-literals" { target xtensa*-*-* } } */
       8  /* { dg-prune-output ".*-Wno-abi.*" } */
       9  /* { dg-prune-output ".*Offset of packed bit-field.*" } */
      10  #include "struct-layout-1.h"
      11  
      12  #define TX(n, type, attrs, fields, ops) extern void test##n (void);
      13  #include "pr102024_test.h"
      14  #undef TX
      15  
      16  int main (void)
      17  {
      18  #define TX(n, type, attrs, fields, ops)   test##n ();
      19  #include "pr102024_test.h"
      20  #undef TX
      21    exit (fails != 0);
      22  }