mirror of
https://github.com/danog/ir.git
synced 2024-12-02 17:55:40 +01:00
24 lines
336 B
Plaintext
24 lines
336 B
Plaintext
|
--TEST--
|
||
|
004: gt function
|
||
|
--TARGET--
|
||
|
Windows-x86_64
|
||
|
--ARGS--
|
||
|
-S
|
||
|
--CODE--
|
||
|
{
|
||
|
double c = 0;
|
||
|
l_1 = START(l_4);
|
||
|
double x = PARAM(l_1, "x", 1);
|
||
|
bool ret = GT(x, c);
|
||
|
l_4 = RETURN(l_1, ret);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
test:
|
||
|
ucomisd .L1(%rip), %xmm0
|
||
|
seta %al
|
||
|
retq
|
||
|
.rodata
|
||
|
.db 0x90, 0x90, 0x90
|
||
|
.L1:
|
||
|
.db 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|