rt_gccstream/gcc/testsuite/gcc.dg/20000111-1.c

18 lines
244 B
C

/* 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 ();
}