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
* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
930614-2.c
blob
ab83a7e3bb99cd514187bf67c0172a147216da22
1
main
()
2
{
3
int
i
,
j
,
k
,
l
;
4
float
x
[
8
][
2
][
8
][
2
];
5
6
for
(
i
=
0
;
i
<
8
;
i
++)
7
for
(
j
=
i
;
j
<
8
;
j
++)
8
for
(
k
=
0
;
k
<
2
;
k
++)
9
for
(
l
=
0
;
l
<
2
;
l
++)
10
{
11
if
((
i
==
j
) && (
k
==
l
))
12
x
[
i
][
k
][
j
][
l
] =
0.8
;
13
else
14
x
[
i
][
k
][
j
][
l
] =
0.8
;
15
if
(
x
[
i
][
k
][
j
][
l
] <
0.0
)
16
abort
();
17
}
18
19
exit
(
0
);
20
}