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