ir/tests/x86_64/mul_ov_002.irt

23 lines
299 B
Plaintext
Raw Normal View History

--TEST--
002: mul_ov function
2022-05-25 16:38:22 +02:00
--TARGET--
x86_64
--ARGS--
-S
--CODE--
{
uint32_t c = 2;
l_1 = START(l_2);
uint32_t x = PARAM(l_1, "x", 1);
uint32_t ret = MUL_OV(x, c);
bool ov = OVERFLOW(ret);
l_2 = RETURN(l_1, ov);
}
--EXPECT--
test:
movl %edi, %eax
movl $2, %edx
mull %edx
setb %al
retq