* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr44038.c
blob574ff398b4270c22681a3e7dbae562c4d66af427
1 struct Ustr {
2 char data[1];
3 };
4 int ustr_xi__embed_val_get(char *);
5 inline static int ustr_len(struct Ustr *s1)
7 return ustr_xi__embed_val_get(s1->data);
9 static struct Ustr *s1 = ((struct Ustr *) "");
10 int tst(char *cstr)
12 return ustr_len(s1);