repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git]
/
test
/
FrontendC
/
2002-12-15-StructParameters.c
blob
90ab1ff440440ba733aaae2868b0ca71594e8fd1
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
typedef
struct
4
{
5
void
*
stack
;
6
unsigned
size
;
7
unsigned
avail
;
8
}
compile_stack_type
;
9
10
void
foo
(
void
*);
11
void
bar
(
compile_stack_type T
,
unsigned
);
12
13
void
test
() {
14
compile_stack_type CST
;
15
foo
(&
CST
);
16
17
bar
(
CST
,
12
);
18
}