1 /* Copyright (C) 2000 Free Software Foundation. 2 3 by Alexandre Oliva <oliva@lsd.ic.unicamp.br> */ 4 5 /* { dg-do compile } */ 6 7 __inline int foo(int ** q)8 foo (int **q) { 9 return *q && **q; 10 } 11 12 void bar()13 bar () { 14 int **p; 15 if (foo (p)) 16 do_something (); 17 } 18