ir/tests/x86/if_001.irt
2022-11-08 11:56:22 +03:00

32 lines
438 B
Plaintext

--TEST--
001: if function
--TARGET--
x86
--ARGS--
-S
--CODE--
{
int32_t c_1 = 0;
int32_t c_2 = 42;
l_1 = START(l_8);
int32_t x = PARAM(l_1, "x", 1);
l_2 = IF(l_1, x);
l_3 = IF_TRUE(l_2);
l_4 = END(l_3);
l_5 = IF_FALSE(l_2);
l_6 = END(l_5);
l_7 = MERGE(l_4, l_6);
int32_t ret = PHI(l_7, c_1, c_2);
l_8 = RETURN(l_7, ret);
}
--EXPECT--
test:
cmpl $0, 4(%esp)
je .L2
xorl %eax, %eax
.L1:
retl
.L2:
movl $0x2a, %eax
jmp .L1