1inline int inl(int d, int e, int f) 2{ 3 switch (d) { 4 case 0: 5 return e; 6 case 1: 7 return f; 8 default: 9 return 0; 10 } 11} 12 13void foo(int a, int b, int c) 14{ 15 while (1) { 16 if (inl(a, b, c)) 17 break; 18 } 19} 20 21/* 22 * check-name: phi-count00 23 * check-command: test-linearize -Wno-decl $file 24 * 25 * check-output-ignore 26 * check-output-pattern(0,2): phisrc 27 */ 28