--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