xref: /illumos-gate/usr/src/tools/smatch/src/validation/optim/killed-insn.c (revision a89c0811c892ec231725fe10817ef95dda813c06)
1 static void foo(int v)
2 {
3 	int a[2] = { };
4 	a;
5 	a[1] = v;
6 }
7 
8 /*
9  * check-name: killed-insn
10  * check-command: test-linearize $file
11  *
12  * check-output-ignore
13  * check-output-excludes: store\\.
14  */
15