OSDN Git Service

/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20001109-2.c
1 /* This does not work on NetWare, which has a default of 1-byte alignment.  */
2 /* { dg-xfail-if "" { "*-*-netware*" } { "*" } { "" } } */
3 extern struct foo bar;
4 struct foo {
5   int a;
6 };
7
8 int tst[__alignof__ (bar) >= __alignof__ (int) ? 1 : -1];