• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

foo(int * ptr,int p)1 void foo(int *ptr, int p)
2 {
3 	if (p)
4 		*ptr = 1;
5 	*ptr = 0;
6 }
7 
8 /*
9  * check-name: kill-dead-store-parent0
10  * check-command: test-linearize -Wno-decl $file
11  *
12  * check-output-ignore
13  * check-output-pattern(1): store
14  */
15