URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pragma-pack-3.c] - Rev 826
Compare with Previous | Blame | View Log
/* PR c++/25294 */ /* { dg-options "-std=gnu99" } */ /* { dg-do run } */ extern void abort (void); struct S { char a[3]; #pragma pack(1) /* A block comment that ends on the next line. */ struct T { char b; int c; } d; #pragma pack /*/ */ () // C++ comment int e; } s; int main () { if (sizeof (int) == 4 && sizeof (s) != 12) abort (); return 0; }