Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr106243-1.c
blobcb3b74cbea759517e194f86cec8c4c02110eb795
1 /* PR tree-optimization/106243 */
2 /* { dg-do run } */
3 /* { dg-options "-O2 -Wno-psabi" } */
5 #include "pr106243.c"
7 int main () {
9 if (foo(3) != 1
10 || bar(-6) != 0
11 || baz(17) != 1
12 || qux(-128) != 0
13 || foo(127) != 1) {
14 __builtin_abort();
17 return 0;