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
/
bug-1376320.c
blob
5f92127bd9412bdbeec61da44967d63838a98ce8
1
/* bug-1376320.c
2
3
copy signedness while replacing operands
4
*/
5
#include <testfwk.h>
6
7
static void
8
testSign
(
void
)
9
{
10
signed long
l
;
11
12
l
=
3
;
13
l
-=
5ul
;
14
ASSERT
(
l
<
0
);
15
}