foo(int *ptr)1 void foo(int *ptr)
2 {
3 	int i = *ptr;
4 	*ptr = i;
5 }
6 
7 /*
8  * check-name: kill-redundant-store0
9  * check-command: test-linearize -Wno-decl $file
10  *
11  * check-output-ignore
12  * check-output-excludes: store
13  */
14