Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr105094.c
blobda6dc172a64e45280d1e072d27ef65087b7fcbcf
1 /* PR tree-optimization/105094 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 struct S { short a; char b[~(__SIZE_TYPE__)0 / __CHAR_BIT__ - 1]; };
6 void bar (struct S *);
8 void
9 foo (void)
11 struct S s = { 5 };
12 bar (&s);