aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20001109-1.c
blob: cce8047ae8a735e6c89475985f29c9dc1595402a (plain)
1
2
3
4
5
6
7
typedef struct _foo foo;
extern foo bar;
struct _foo {
  int a;
};

int tst[__alignof__ (bar) >= __alignof__ (int) ? 1 : -1];