/* Copyright (C) 2000 Free Software Foundation. by Alexandre Oliva */ /* { dg-do compile } */ __inline int foo (int **q) { return *q && **q; } void bar () { int **p; if (foo (p)) do_something (); }