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
/
pr97135.c
blob
223f4d05b85750a6cf4af0ef08fad0851f8f50c6
1
/* { dg-do run } */
2
3
long long
e
, *
d
= &
e
;
4
int
a
,
b
,
c
;
5
6
int
7
main
()
8
{
9
for
(;
c
<=
5
;
c
++)
10
for
(
b
=
0
;
b
<=
5
;
b
++)
11
{
12
for
(
a
=
1
;
a
<=
5
;
a
++)
13
;
14
*
d
=
0
;
15
if
(
c
)
16
break
;
17
}
18
if
(
a
!=
6
)
19
__builtin_abort
();
20
return
0
;
21
}