* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20070915-1.c
blob1cd64e5ca69ae28f61e0f7a6f05de592e6770e43
1 /* PR middle-end/33423 */
3 static struct
5 char buf[15];
6 } u2;
8 void
9 test6 (void)
11 int len;
12 char *p;
14 for (len = 0; len < 2; len++)
16 p = __builtin___memset_chk (u2.buf, '\0', len, 15);
17 if (p != u2.buf)
18 return;