ir/tests/llvm/conv_007.irt
2023-09-28 20:44:45 +03:00

18 lines
260 B
Plaintext

--TEST--
007: type conversion FP2INT
--ARGS--
--emit-llvm
--CODE--
{
l_1 = START(l_4);
float x = PARAM(l_1, "x", 1);
uint32_t ret = FP2INT(x);
l_4 = RETURN(l_1, ret);
}
--EXPECT--
define i32 @test(float %d2)
{
%d3 = fptoui float %d2 to i32
ret i32 %d3
}