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
/
921013-1.c
blob
d041beb257acefd1be2ef1cb24c5aa8df8a240ff
1
f
(
d
,
x
,
y
,
n
)
2
int
*
d
;
3
float
*
x
,*
y
;
4
int
n
;
5
{
6
while
(
n
--){*
d
++=*
x
++==*
y
++;}
7
}
8
9
main
()
10
{
11
int
r
[
4
];
12
float
a
[]={
5
,
1
,
3
,
5
};
13
float
b
[]={
2
,
4
,
3
,
0
};
14
int
i
;
15
f
(
r
,
a
,
b
,
4
);
16
for
(
i
=
0
;
i
<
4
;
i
++)
17
if
((
a
[
i
]==
b
[
i
])!=
r
[
i
])
18
abort
();
19
exit
(
0
);
20
}