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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr105972.c
blob
73f3385f7eba856ba58995343c07b63c84100889
1
/* PR c/105972 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -g" } */
4
5
__attribute__
((
optimize
(
0
)))
int
6
foo
(
void
)
7
{
8
int
9
bar
(
x
)
10
int
x
;
11
{
12
return
x
;
13
}
14
return
bar
(
0
);
15
}