summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/compat/struct-return-2_main.c
blob: c0dec1cc30bfd8ec47122695d1871edd67f7726d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Test function return values.  This test includes structs that are
   arrays of unsigned integral scalars.  */
/* { dg-skip-if "limited code space" { pdp11-*-* } } */

extern void struct_return_2_x (void);
extern void exit (int);
int fails;

int
main ()
{
  struct_return_2_x ();
  exit (0);
}