mirror of
https://github.com/danog/ir.git
synced 2024-11-27 12:57:00 +01:00
18 lines
222 B
Plaintext
18 lines
222 B
Plaintext
|
--TEST--
|
||
|
004: ge function
|
||
|
--ARGS--
|
||
|
-S
|
||
|
--CODE--
|
||
|
{
|
||
|
double c = 0;
|
||
|
l_1 = START(l_4);
|
||
|
double x = PARAM(l_1, "x", 1);
|
||
|
bool ret = GE(x, c);
|
||
|
l_4 = RETURN(l_1, ret);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
test:
|
||
|
ucomisd 8(%rip), %xmm0
|
||
|
setae %al
|
||
|
retq
|