* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / BUG21.c
blobc8a1157cc460bb06c299833d733f72e6150db2d6
1 typedef struct {
2 int knock_on_wood; /* leave it out and it works. */
3 int f1;
4 } FOO;
6 typedef struct {
7 FOO *b1;
8 } BAR;
10 Nase ()
12 int i, j;
13 FOO *foop;
14 BAR *barp;
16 for (i = 0; i < 2; i++) {
17 foop = &barp->b1[i];
18 for (j = 0; j < foop->f1; j++) {
19 /* dummy() */; /* put it in and it works. */