mirror of
https://github.com/danog/ir.git
synced 2024-12-02 17:55:40 +01:00
17 lines
198 B
Plaintext
17 lines
198 B
Plaintext
|
--TEST--
|
||
|
002: not function
|
||
|
--ARGS--
|
||
|
-S
|
||
|
--CODE--
|
||
|
{
|
||
|
l_1 = START(l_4);
|
||
|
bool x = PARAM(l_1, "x", 1);
|
||
|
bool ret = NOT(x);
|
||
|
l_4 = RETURN(l_1, ret);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
test:
|
||
|
testb %dil, %dil
|
||
|
setne %al
|
||
|
retq
|