blob: 840d4a6c72b82ea0f71ff933dca073d37304a643 [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;
}