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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
vector-2_main.c
blob
37f36fe0eca4a54b599ef576da9b7a4556533c17
1
/* Test compatibility of vector types: layout between separately-compiled
2
modules, parameter passing, and function return. This test uses
3
vectors of floating points values. */
4
5
extern
void
vector_2_x
(
void
);
6
extern
void
exit
(
int
);
7
int
fails
;
8
9
int
10
main
()
11
{
12
vector_2_x
();
13
exit
(
0
);
14
}