xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/960419-1.c (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
1 static int i;
2 
3 void
4 check(x)
5      int x;
6 {
7   if (!x)
8     abort();
9 }
10 
11 main()
12 {
13   int *p = &i;
14 
15   check(p != (void *)0);
16   exit (0);
17 }
18