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

foo(int a[])1 void foo(int a[])
2 {
3 	int i, val;
4 	for (;; i++)
5 		val = a[i] ? a[i] : val;
6 }
7 
8 /*
9  * check-name: memops-missed02
10  * check-command: test-linearize -Wno-decl $file
11  *
12  * check-output-ignore
13  * check-output-pattern(1): load\\.
14  */
15