ir/tests/x86_64/conv_001.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
203 B
Plaintext

--TEST--
001: type conversion SEXT
--ARGS--
-S
--CODE--
{
l_1 = START(l_4);
int32_t x = PARAM(l_1, "x", 1);
int64_t ret = SEXT(x);
l_4 = RETURN(l_1, ret);
}
--EXPECT--
test:
movslq %edi, %rax
retq