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