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
2010-08-30 Richard Guenther <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr45449.c
blob
d7b69a1827e9d248a30183a92836fec5cf6e5bcd
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-tree-pre -fno-tree-pta -fcompare-debug" } */
3
4
struct
S
5
{
6
};
7
8
void
9
baz
(
void
)
10
{
11
struct
S s
;
12
&
s
;
13
}
14
15
int
bar
(
void
);
16
17
void
18
foo
(
void
)
19
{
20
if
(
bar
())
21
baz
();
22
}