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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr68379.c
blob
6a3be7b5f5f2edd1b93c80c2479f1ec44978732d
1
/* { dg-do compile } */
2
3
int
a
,
b
[
3
],
c
[
3
][
5
];
4
5
void
6
fn1
()
7
{
8
int
e
;
9
for
(
a
=
2
;
a
>=
0
;
a
--)
10
for
(
e
=
0
;
e
<
4
;
e
++)
11
c
[
a
][
e
] =
b
[
a
];
12
}