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
* gcc.c-torture/execute/20101011-1.c: Skip on SH.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
921124-1.c
blob
51b090b4de10e65a6bb2406ca01e15f1f5b1fdbd
1
f
(
x
,
d1
,
d2
,
d3
)
2
double
d1
,
d2
,
d3
;
3
{
4
return
x
;
5
}
6
7
g
(
b
,
s
,
x
,
y
,
i
,
j
)
8
char
*
b
,*
s
;
9
double
x
,
y
;
10
{
11
if
(
x
!=
1.0
||
y
!=
2.0
||
i
!=
3
||
j
!=
4
)
12
abort
();
13
}
14
15
main
()
16
{
17
g
(
""
,
""
,
1.0
,
2.0
,
f
(
3
,
0.0
,
0.0
,
0.0
),
f
(
4
,
0.0
,
0.0
,
0.0
));
18
exit
(
0
);
19
}