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
* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr58955-2.c
blob
a43860e9b0200ff1f7c4e98ed265fba11a06aa9f
1
/* { dg-do run } */
2
3
extern
void
abort
(
void
);
4
5
int
a
,
b
[
10
];
6
7
int
8
main
()
9
{
10
for
(;
a
<
2
;
a
++)
11
{
12
b
[
a
] =
1
;
13
b
[
a
+
1
] =
0
;
14
}
15
if
(
b
[
1
] !=
1
)
16
abort
();
17
return
0
;
18
}