ir/tests/c/cond_01.irt

24 lines
389 B
Plaintext

--TEST--
001: cond function
--ARGS--
--emit-c
--CODE--
{
l_1 = START(l_4);
int32_t x = PARAM(l_1, "x", 1);
int32_t y = PARAM(l_1, "y", 2);
bool z = PARAM(l_1, "z", 3);
int32_t ret = COND(z, x, y);
l_4 = RETURN(l_1, ret);
}
--EXPECT--
int32_t test(int32_t x, int32_t y, bool z)
{
int32_t d_1 = x;
int32_t d_2 = y;
bool d_3 = z;
int32_t d_4;
d_4 = d_3 ? d_1 : d_2;
return d_4;
}