math: improve how get_absolute_min/max() work
[smatch.git] / validation / sm_equiv4.c
blob43b28286c964402d8bbc21b1dab85c4a1512f19f
1 #include "check_debug.h"
3 void *ioremap();
4 void iounmap(void *);
6 int *a, *b, *c;
7 int func(void)
9 a = ioremap();
10 b = ioremap();
11 c = a;
12 iounmap(c);
13 return -1;
16 * check-name: smatch equivalent variables #4
17 * check-command: smatch -p=kernel -I.. sm_equiv4.c
19 * check-output-start
20 sm_equiv4.c:13 func() warn: 'b' was not released on error
21 * check-output-end