mirror of
https://github.com/danog/ir.git
synced 2024-11-27 12:57:00 +01:00
21 lines
265 B
Plaintext
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
|