ir/tests/x86/abs_001.irt
2022-11-08 11:56:22 +03:00

22 lines
274 B
Plaintext

--TEST--
001: abs function
--TARGET--
x86
--ARGS--
-S
--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--
test:
movl 4(%esp), %eax
movl %eax, %ecx
negl %ecx
cmovsl %eax, %ecx
movl %ecx, %eax
retl