1 int fun(int); 2 foo(int a,int b,int c)3int foo(int a, int b, int c) 4 { 5 return a ? fun(b) : fun(c); 6 } 7 8 /* 9 * check-name: cond-expr 10 * check-command: test-linearize -Wno-decl -fdump-ir=mem2reg $file 11 * check-output-ignore 12 * check-output-pattern(1): phi\\. 13 * check-output-pattern(2): phisrc\\. 14 */ 15