1int def(void); 2 3int fun4(struct xfrm_state *net, int cnt) 4{ 5 int err = 0; 6 if (err) 7 goto out; 8 for (; net;) 9 err = def(); 10 if (cnt) 11out: 12 return err; 13 return 0; 14} 15 16/* 17 * check-name: bad-phisrc1a 18 * check-command: test-linearize -Wno-decl $file 19 * 20 * check-output-ignore 21 * check-output-contains: select\\. 22 */ 23 24