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-3801.c
blob
15d3dac503cf3b1b8d1b818e50feef3bfc5bcf4c
1
/* bug-3801.c
2
3
A bug resulting in negative array sizes notbeing diagnosed.
4
*/
5
6
#ifdef TEST1
7
char
c
[-
2
];
/* ERROR */
8
#endif
9
10
#ifdef TEST2
11
void
f
(
void
)
12
{
13
char
c
[-
2
];
/* ERROR */
14
}
15
#endif
16