mirror of
https://github.com/danog/ir.git
synced 2024-12-02 17:55:40 +01:00
19 lines
260 B
Plaintext
19 lines
260 B
Plaintext
--TEST--
|
|
004: eq function
|
|
--ARGS--
|
|
--emit-llvm
|
|
--CODE--
|
|
{
|
|
double c = 0;
|
|
l_1 = START(l_4);
|
|
double x = PARAM(l_1, "x", 1);
|
|
bool ret = EQ(x, c);
|
|
l_4 = RETURN(l_1, ret);
|
|
}
|
|
--EXPECT--
|
|
define i1 @test(double %d2)
|
|
{
|
|
%d3 = fcmp oeq double %d2, 0.0
|
|
ret i1 %d3
|
|
}
|