mirror of
https://github.com/danog/ir.git
synced 2024-11-26 20:34:53 +01:00
22 lines
337 B
Plaintext
22 lines
337 B
Plaintext
|
--TEST--
|
||
|
001: min 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);
|
||
|
int32_t ret = MIN(x, y);
|
||
|
l_4 = RETURN(l_1, ret);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
int32_t test(int32_t x, int32_t y)
|
||
|
{
|
||
|
int32_t d_1 = x;
|
||
|
int32_t d_2 = y;
|
||
|
int32_t d_3;
|
||
|
d_3 = d_2 < d_1 ? d_2 : d_1;
|
||
|
return d_3;
|
||
|
}
|