ir/tests/x86_64/le_002.irt

20 lines
237 B
Plaintext
Raw Normal View History

--TEST--
002: le function
2022-05-25 16:38:22 +02:00
--TARGET--
x86_64
--ARGS--
-S
--CODE--
{
int32_t c = 17;
l_1 = START(l_4);
int32_t x = PARAM(l_1, "x", 1);
bool ret = LE(x, c);
l_4 = RETURN(l_1, ret);
}
--EXPECT--
test:
cmpl $0x11, %edi
setle %al
retq