projects
/
platform
/
upstream
/
gcc48.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
remove unused files
[platform/upstream/gcc48.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr45449.c
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
}