ir/tests/c/conv_005.irt

20 lines
320 B
Plaintext
Raw Normal View History

--TEST--
2022-05-20 08:00:13 +02:00
005: type conversion BITCAST
--ARGS--
--emit-c
--CODE--
{
l_1 = START(l_4);
float 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(float x)
{
float d_1 = x;
2022-05-20 08:00:13 +02:00
uint32_t d_2;
{union {float f; uint32_t bits;} _u; _u.f = d_1; d_2 = _u.bits;}
return d_2;
}