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
/
union-m128-1_main.c
blob
69dd34dce5748bc94a512cd2a86b1c9919ca0a68
1
/* { dg-options "-O" } */
2
3
#ifdef __x86_64__
4
/* Test function argument passing. PR target/15301. */
5
6
extern
void
union_m128_1_x
(
void
);
7
extern
void
exit
(
int
);
8
9
int
10
main
()
11
{
12
union_m128_1_x
();
13
exit
(
0
);
14
}
15
#else
16
int
17
main
()
18
{
19
return
0
;
20
}
21
#endif