blob: aec2f0a389f74a7a11b62ee045633d87f0806e1e [file] [log] [blame]
int foo1(bool b, int tv, int fv)
{
return b ? tv : fv;
}
int foo2(bool b, int tv, int fv)
{
return b?tv:fv;
}