1int fun(void); 2 3static int foo(int a) { return 0 || fun(); } 4static int bar(int a) { return 1 || fun(); } 5static int baz(int a) { return 0 && fun(); } 6static int qux(int a) { return 1 && fun(); } 7 8static int oof(int a) { return fun() || 1; } 9static int rab(int a) { return fun() || 0; } 10static int zab(int a) { return fun() && 1; } 11static int xuq(int a) { return fun() && 0; } 12 13/* 14 * check-name: phi-order02 15 * check-command: sparse -vir -flinearize=last $file 16 */ 17