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
/
ipa
/
ipa-sra-25.c
blob
46fc1a5457180fbdc3ea924635f8a0d46ad71996
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -Wmaybe-uninitialized -Werror" } */
3
4
int
cbos
();
5
static int
aos
() {
6
cbos
();
7
return
0
;
8
}
9
int
cbos_ptr
;
10
long
cbos_psize
;
11
int
cbos
() {
12
if
(
cbos_ptr
)
13
return
aos
();
14
if
(
cbos_psize
)
15
return
1
;
16
return
0
;
17
}