ir/tests/c/conv_003.irt

20 lines
272 B
Plaintext
Raw Normal View History

--TEST--
2022-05-20 08:00:13 +02:00
003: type conversion BITCAST
--ARGS--
--emit-c
--CODE--
{
l_1 = START(l_4);
int32_t x = PARAM(l_1, "x", 1);
2022-05-20 08:00:13 +02:00
uint32_t ret = BITCAST(x);
l_4 = RETURN(l_1, ret);
}
--EXPECT--
2022-05-20 08:00:13 +02:00
uint32_t test(int32_t x)
{
int32_t d_1 = x;
2022-05-20 08:00:13 +02:00
uint32_t d_2;
d_2 = d_1;
return d_2;
}