URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [pack-test-2.c] - Rev 12
Compare with Previous | Blame | View Log
/* Tests for syntax checking of #pragma pack. Contributed by Mike Coleman <mcoleman2@kc.rr.com> */ /* { dg-do compile { target *-*-linux* *-*-cygwin* powerpc*-*-eabi* } } */ #pragma pack(pop) /* { dg-error "without matching" } */ #pragma pack(push) #pragma pack(pop) /* reset */ #pragma pack(push, foo, 1) #pragma pack(pop, foo, 1) /* { dg-error "malformed" } (/ #pragma pack(pop) /* reset */ #pragma pack(push, foo, 1) #pragma pack(pop, bar) /* { dg-error "without matching" } */ #pragma pack(pop) /* reset */ #pragma pack(push, foo, 1) #pragma pack(pop) #pragma pack(pop, foo) /* { dg-error "without matching" } */ #pragma pack(push, foo, 3) /* { dg-error "small power of two" } */ extern int blah; /* prevent "ISO C forbids an empty source file" */