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
/
torture
/
pr107935.c
blob
78175100f80e5ce1ca24a534df54fc8a13db6fc9
1
/* { dg-do compile } */
2
3
int
*
a
, **
b
;
4
int
main
() {
5
int
d
=
0
, *
e
= &
d
;
6
L
:
7
*
e
=
d
;
8
if
(
a
) {
9
int
*
g
=
e
= *
b
;
10
if
(!
e
)
11
__builtin_abort
();
12
if
(**
b
)
13
return
0
;
14
*
g
=
1
;
15
goto
L
;
16
}
17
return
0
;
18
}