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-3009.c
blob
11a8ac80596b14c4ba247b05133fe88b52bc842e
1
/* bug-3009.c
2
3
Segfault on expression that is not an integer constant.
4
*/
5
6
#ifdef TEST1
7
int
f
();
/* IGNORE */
8
9
enum
some_enum
10
{
11
val
=
f
()
/* ERROR */
12
};
13
#endif
14