repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR middle-end/27945
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20000111-1.c
blob
a042656d5647bf4cc8ce5bd337b695ea61d2b86a
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
8
foo
(
int
**
q
) {
9
return
*
q
&& **
q
;
10
}
11
12
void
13
bar
() {
14
int
**
p
;
15
if
(
foo
(
p
))
16
do_something
();
17
}