1 void fun(void); 2 foo(int * p)3void foo(int *p) 4 { 5 for (*p; *p; *p) { 6 l: 7 fun(); 8 } 9 10 if (0) 11 goto l; 12 } 13 14 /* 15 * check-name: kill-dead-loads00 16 * check-command: test-linearize -Wno-decl $file 17 * 18 * check-output-ignore 19 * check-output-excludes: phi\\. 20 * check-output-pattern(1): load\\. 21 * check-output-end 22 */ 23