ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/pru/mabi-ti-2.c

16 lines
273 B
C
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
/* Test TI ABI unsupported constructs */
/* { dg-do assemble } */
/* { dg-options "-O1 -mabi=ti" } */
struct big {
char c[9];
};
struct big test(void)
{ /* { dg-error "large return values not supported with '-mabi=ti' option" } */
static struct big b;
return b;
}