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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
struct-by-value-21_main.c
blob
b722bccd2ca90beb1d169f4061cb9e6a19971807
1
/* Test function argument passing. This was written when correcting
2
a deviation from the ABI on SPARC64 between 3.3 and 3.4. */
3
4
extern
void
struct_by_value_21_x
(
void
);
5
extern
void
exit
(
int
);
6
int
fails
;
7
8
int
9
main
()
10
{
11
struct_by_value_21_x
();
12
exit
(
0
);
13
}