Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr104675-2.c
blob037d0c4f10dd5e2011aeb3c4cb1c456eb0156fd6
1 /* PR tree-optimization/104675 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 void baz (int i);
7 void
8 bar (_Complex int c, short s)
10 c -= s;
11 baz (__real__ c + __imag__ c);
14 void
15 foo (void)
17 bar (-1 - 1i, 0);