repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
vector-1_main.c
blob
6c995e7c4bb8fb3458effd2f83f3c65e21f8a97b
1
/* Test compatibility of vector types: layout between separately-compiled
2
modules, parameter passing, and function return. This test uses
3
vectors of integer values. */
4
5
extern
void
vector_1_x
(
void
);
6
extern
void
exit
(
int
);
7
int
fails
;
8
9
int
10
main
()
11
{
12
vector_1_x
();
13
exit
(
0
);
14
}