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
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83396.c
blob
7d8220e1154322c49bf12da3950a23e2562554b8
1
/* PR bootstrap/83396 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -g" } */
4
5
int
bar
(
int
);
6
int
baz
(
int
);
7
8
int
9
foo
(
int
x
)
10
{
11
return
bar
(
x
) ||
baz
(
x
) !=
0
;
12
}