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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr33434-4.c
blob
d34675fe4e221dab5f15e2329ba2e72804594a90
1
/* PR tree-optimization/33434 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
void
*
baz
(
void
);
6
7
static void
*
8
bar
(
void
*
x
)
9
{
10
x
=
baz
();
11
return
x
;
12
}
13
14
void
*
15
foo
(
void
*
x
)
16
{
17
return
bar
(
x
);
18
}