2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 20000111-1.c
bloba042656d5647bf4cc8ce5bd337b695ea61d2b86a
1 /* Copyright (C) 2000 Free Software Foundation.
3 by Alexandre Oliva <oliva@lsd.ic.unicamp.br> */
5 /* { dg-do compile } */
7 __inline int
8 foo (int **q) {
9 return *q && **q;
12 void
13 bar () {
14 int **p;
15 if (foo (p))
16 do_something ();