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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
scalar-by-value-dfp_main.c
blob
7f81d6a37548c3190300a31f4ede356a7c9d9f57
1
/* Test passing scalars by value. This test includes scalar types that
2
are supported by va_arg. */
3
4
/* { dg-require-compat-dfp "" } */
5
6
extern
void
scalar_by_value_dfp_x
(
void
);
7
extern
void
exit
(
int
);
8
int
fails
;
9
10
int
11
main
()
12
{
13
scalar_by_value_dfp_x
();
14
exit
(
0
);
15
}