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
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
valdiag
/
tests
/
bug-3031.c
blob
a75a17701b08543595c1eb8be78ced765a8d304d
1
/* bug-3031.c
2
3
Initialization of file-scope variables by an expression that contains function calls resulted in a segfault in codegen.
4
*/
5
6
#ifdef TEST1
7
float
f
(
int
);
8
9
int
i
;
10
float
d
=
f
(
i
);
/* ERROR */
11
12
#endif
13