ir/tests/x86/div_004.irt
2022-11-08 11:56:22 +03:00

21 lines
249 B
Plaintext

--TEST--
004: div function
--TARGET--
x86
--ARGS--
-S
--CODE--
{
int32_t c = 17;
l_1 = START(l_4);
int32_t x = PARAM(l_1, "x", 1);
int32_t ret = DIV(c, x);
l_4 = RETURN(l_1, ret);
}
--EXPECT--
test:
movl $0x11, %eax
cltd
idivl 4(%esp)
retl