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
/
pr45449.c
blob
61ddcbc424a022e70905a99066b60abee565538c
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-tree-pre -fno-tree-pta -fcompare-debug" } */
3
/* { dg-xfail-if "" { powerpc-ibm-aix* } } */
4
5
struct
S
6
{
7
};
8
9
void
10
baz
(
void
)
11
{
12
struct
S s
;
13
&
s
;
14
}
15
16
int
bar
(
void
);
17
18
void
19
foo
(
void
)
20
{
21
if
(
bar
())
22
baz
();
23
}