--TEST--
005: type conversion BITCAST
--ARGS--
--emit-c
--CODE--
{
	l_1 = START(l_4);
	float x = PARAM(l_1, "x", 1);
	uint32_t ret = BITCAST(x);
	l_4 = RETURN(l_1, ret);
}
--EXPECT--
uint32_t test(float x)
{
	float d_1 = x;
	uint32_t d_2;
	{union {float f; uint32_t bits;} _u; _u.f = d_1; d_2 = _u.bits;}
	return d_2;
}