Imported Upstream version 2.9.0
[debian/cc1111] / support / regression / tests / bug-1376320.c
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 }