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 (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr71295.c
blob
d2ec852fd08b307da50bfd993a6c43d42f303037
1
extern
void
fn2
(
long long
);
2
int
a
;
3
4
void
5
fn1
()
6
{
7
long long
b
[
3
];
8
a
=
0
;
9
for
(;
a
<
3
;
a
++)
10
b
[
a
] =
1
;
11
fn2
(
b
[
1
]);
12
}