repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tcc
/
107_stack_safe.c
blob
479c84d37dad45050a46233f3eb76aeda4540f88
1
extern
int
printf
(
const char
*, ...);
2
3
static void
func_ull_ull
(
unsigned long long
l1
,
unsigned long long
l2
){
4
}
5
6
int
main
()
7
{
8
int
a
,
b
,
c
,
d
;
9
a
=
1
;
b
=
2
;
c
=
3
;
d
=
4
;
10
func_ull_ull
((
unsigned long long
)
a
/
1.0
,(
unsigned long long
)
b
/
1.0
);
11
printf
(
"%d %d %d %d"
,
a
,
b
,
c
,
d
);
12
return
0
;
13
}