mirror of
https://github.com/danog/ir.git
synced 2024-11-26 20:34:53 +01:00
20 lines
241 B
Plaintext
20 lines
241 B
Plaintext
--TEST--
|
|
010: add function
|
|
--TARGET--
|
|
x86
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
uint16_t c = 1;
|
|
l_1 = START(l_4);
|
|
uint16_t x = PARAM(l_1, "x", 1);
|
|
uint16_t ret = ADD(x, c);
|
|
l_4 = RETURN(l_1, ret);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
movw 4(%esp), %ax
|
|
incw %ax
|
|
retl
|