mirror of
https://github.com/danog/ir.git
synced 2024-11-30 04:39:43 +01:00
22 lines
266 B
Plaintext
22 lines
266 B
Plaintext
|
--TEST--
|
||
|
004: mod 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 = MOD(c, x);
|
||
|
l_4 = RETURN(l_1, ret);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
test:
|
||
|
movl $0x11, %eax
|
||
|
cltd
|
||
|
idivl 4(%esp)
|
||
|
movl %edx, %eax
|
||
|
retl
|