math: improve how get_absolute_min/max() work
[smatch.git] / validation / sm_casts.c
blob86796a4041d3121b688f3a017300b7386e0337fe
1 void frob(void);
3 static int options_write(void)
5 char a;
6 unsigned char b;
7 char c;
9 a = (char)0xff;
10 a = 0xff;
11 (char)b = 0xff;
12 b = 0xff;
13 if (c > -400)
14 frob();
15 if (c < -400)
16 frob();
17 if (400 > c)
18 frob();
19 if (-400 > c)
20 frob();
21 b = -12;
25 * check-name: smatch cast handling
26 * check-command: smatch sm_casts.c
28 * check-output-start
29 sm_casts.c:13 options_write() warn: -400 is less than -128 (min 'c' can be) so this is always true.
30 sm_casts.c:15 options_write() warn: -400 is less than -128 (min 'c' can be) so this is always false.
31 sm_casts.c:17 options_write() warn: 400 is more than 127 (max 'c' can be) so this is always true.
32 sm_casts.c:19 options_write() warn: -400 is less than -128 (min 'c' can be) so this is always false.
33 sm_casts.c:21 options_write() warn: assigning -12 to unsigned variable 'b'
34 * check-output-end