mirror of
https://github.com/danog/ir.git
synced 2024-11-26 20:34:53 +01:00
20 lines
237 B
Plaintext
20 lines
237 B
Plaintext
--TEST--
|
|
001: not function
|
|
--ARGS--
|
|
--emit-c
|
|
--CODE--
|
|
{
|
|
l_1 = START(l_4);
|
|
bool x = PARAM(l_1, "x", 1);
|
|
bool ret = NOT(x);
|
|
l_4 = RETURN(l_1, ret);
|
|
}
|
|
--EXPECT--
|
|
bool test(bool x)
|
|
{
|
|
bool d_1 = x;
|
|
bool d_2;
|
|
d_2 = !d_1;
|
|
return d_2;
|
|
}
|