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-3011.c
blob
429a3b1f499bcbeee6669e43d66e364f735bab75
1
/* bug-3011.c
2
3
Crash on (not-yet-implemented as of mid-2020) compound literal.
4
*/
5
6
#ifdef TEST1
7
void
f
()
/* IGNORE */
8
{
9
int
*
p
= (
int
*){
1
};
/* IGNORE */
10
}
11
#endif
12