mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
20 lines
255 B
Plaintext
20 lines
255 B
Plaintext
|
--TEST--
|
||
|
001: neg function
|
||
|
--ARGS--
|
||
|
--emit-c
|
||
|
--CODE--
|
||
|
{
|
||
|
l_1 = START(l_4);
|
||
|
int32_t x = PARAM(l_1, "x", 1);
|
||
|
int32_t ret = NEG(x);
|
||
|
l_4 = RETURN(l_1, ret);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
int32_t test(int32_t x)
|
||
|
{
|
||
|
int32_t d_1 = x;
|
||
|
int32_t d_2;
|
||
|
d_2 = -d_1;
|
||
|
return d_2;
|
||
|
}
|