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
/
91_ptr_longlong_arith32.c
blob
bf07915ab9998d5272a6cb4523e00f5368d70eb9
1
int
printf
(
const char
*, ...);
2
char
t
[] =
"012345678"
;
3
4
int
main
(
void
)
5
{
6
char
*
data
=
t
;
7
unsigned long long
r
=
4
;
8
unsigned
a
=
5
;
9
unsigned long long
b
=
12
;
10
11
*(
unsigned
*)(
data
+
r
) +=
a
-
b
;
12
13
printf
(
"data =
\"
%s
\"\n
"
,
data
);
14
return
0
;
15
}