OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
2004-05-20 H.J. Lu <hongjiu.lu@intel.com>
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
union-m128-1_main.c
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