mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
22 lines
285 B
Plaintext
22 lines
285 B
Plaintext
|
--TEST--
|
||
|
007: min function
|
||
|
--TARGET--
|
||
|
x86
|
||
|
--ARGS--
|
||
|
-S
|
||
|
--CODE--
|
||
|
{
|
||
|
int32_t c = 47;
|
||
|
l_1 = START(l_4);
|
||
|
int32_t x = PARAM(l_1, "x", 1);
|
||
|
int32_t ret = MIN(x, c);
|
||
|
l_4 = RETURN(l_1, ret);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
test:
|
||
|
movl 4(%esp), %eax
|
||
|
movl $0x2f, %ecx
|
||
|
cmpl %ecx, %eax
|
||
|
cmovll %ecx, %eax
|
||
|
retl
|