allocations: set the ->total_size, ->nr_elem and ->elem_size expressions
[smatch.git] / validation / mem2reg / loop02-pointer.c
blobfdb0a8fb5ffc025d15be1bbfdc6355d6172ac476
3 int foo(int *i)
5 int j = 1;
6 *i = 6;
8 do {
9 if (*i != 6)
10 (*i)++;
11 (*i)++;
12 } while (*i != j);
14 return j;
18 * check-name: loop02 pointer
19 * check-command: test-linearize -Wno-decl -fdump-ir=mem2reg $file
20 * check-output-ignore
21 * check-output-pattern(0,4): load\\.
22 * check-output-pattern(1,3): store\\.