db/insert_manual_states.pl: remove debug output
[smatch.git] / validation / optim / live-stores0.c
blob2cbc5ab145c00286315f016f12f84abb3145ff41
1 void init(int *x);
3 static int foo(void)
5 int a[2] = { 0, 123, };
7 if (a[1] != 123)
8 return 1;
9 init(a);
10 if (a[1] == 123)
11 return 2;
12 return 0;
15 #if 0
16 void init(int *x)
18 x[0] = x[1] = 0;
20 #endif
23 * check-name: live-stores
24 * check-command: test-linearize $file
26 * check-output-ignore
27 * check-output-contains: store.32 *\\$123
28 * check-output-pattern(2,3): store\\.