absolute: use the implied max before the type max
[smatch.git] / validation / sm_implied7.c
blobde5420a614e832710e8ca22c2971f0e5dbe2497c
1 #include "check_debug.h"
2 int a, b, c;
3 int frob(void) {
4 if (a && b != 1)
5 return;
7 __smatch_value("a");
8 if (b == 0 && c) {
9 __smatch_value("a");
11 __smatch_value("a");
14 * check-name: Smatch implied #7
15 * check-command: smatch -I.. sm_implied7.c
17 * check-output-start
18 sm_implied7.c:7 frob() a = min-max
19 sm_implied7.c:9 frob() a = 0
20 sm_implied7.c:11 frob() a = min-max
21 * check-output-end