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
Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug2805333.c
blob
cbdee0761f1a23f53585ee07c4c83834d4040ffd
1
/*
2
bug2805333.c
3
*/
4
5
#include <testfwk.h>
6
7
#ifdef __SDCC
8
#pragma std_sdcc99
9
#endif
10
11
#include <stdbool.h>
12
13
void
g
(
char
c
)
14
{
15
c
;
16
}
17
18
bool
b
;
19
20
void
test_bug
(
void
)
21
{
22
g
(!
b
);
/* Causes SDCC 2.9.0 to segfault.. */
23
}