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
/
pr97901.c
blob
a6a89ef1e27eead47c5901d567cc2778bf23157a
1
/* { dg-do compile } */
2
3
int
a
[
1
],
b
, *
c
, *
d
;
4
5
int
main
() {
6
L
:
7
d
=
c
;
8
for
(
b
=
0
;
b
<
2
;
b
++)
9
d
= &
a
[
0
];
10
if
(
c
)
11
goto
L
;
12
if
(*
d
)
13
__builtin_abort
();
14
return
0
;
15
}