blob: 0c4004fea0d6618e7c259bb251904047cf1cb4ce [file] [log] [blame]
int fun(void);
static int foo(int a)
{
return a && fun();
}
static int bar(int a)
{
return a || fun();
}
/*
* check-name: phi-order01
* check-command: sparse -vir -flinearize=last $file
*/