blob: a042656d5647bf4cc8ce5bd337b695ea61d2b86a [file] [log] [blame]
/* Copyright (C) 2000 Free Software Foundation.
by Alexandre Oliva <oliva@lsd.ic.unicamp.br> */
/* { dg-do compile } */
__inline int
foo (int **q) {
return *q && **q;
}
void
bar () {
int **p;
if (foo (p))
do_something ();
}