ir/tests/x86_64/conv_007.irt
Dmitry Stogov 6f7f7b1268 Implement code generation for type conversion instructions
Register constraints might need to be tweeked.
2022-05-20 13:07:41 +03:00

16 lines
209 B
Plaintext

--TEST--
007: type conversion FP2INT
--ARGS--
-S
--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--
test:
cvtss2si %xmm0, %rax
retq