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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20030203-1.c
blob
3ce3d611ef6e3456f6ab3d88f724f63dd05338e7
1
void
f
(
int
);
2
int
do_layer3
(
int
single
)
3
{
4
int
stereo1
;
5
6
if
(
single
>=
0
)
/* stream is stereo, but force to mono */
7
stereo1
=
1
;
8
else
9
stereo1
=
2
;
10
f
(
single
);
11
12
return
stereo1
;
13
}
14
15
extern
void
abort
();
16
int
main
()
17
{
18
if
(
do_layer3
(-
1
) !=
2
)
19
abort
();
20
return
0
;
21
}
22
23
void
f
(
int
i
) {}