ir/tests/x86_64/mod_002.irt
2022-04-08 00:29:49 +03:00

21 lines
265 B
Plaintext

--TEST--
002: mod function
--ARGS--
-S
--CODE--
{
int32_t c = 17;
l_1 = START(l_4);
int32_t x = PARAM(l_1, "x", 1);
int32_t ret = MOD(x, c);
l_4 = RETURN(l_1, ret);
}
--EXPECT--
test:
movl %edi, %eax
movl $0x11, %ecx
cltd
idivl %ecx
movl %edx, %eax
retq