mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
6f3cc3052c
Remove POW
20 lines
271 B
Plaintext
20 lines
271 B
Plaintext
--TEST--
|
|
001: abs function
|
|
--ARGS--
|
|
--emit-c
|
|
--CODE--
|
|
{
|
|
l_1 = START(l_4);
|
|
int32_t x = PARAM(l_1, "x", 1);
|
|
int32_t ret = ABS(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 < 0 ? -d_1 : d_1;
|
|
return d_2;
|
|
}
|