ir/tests/debug/tailcall_001.irt
2022-05-06 12:55:07 +03:00

27 lines
406 B
Plaintext

--TEST--
Simple CALL
--ARGS--
-S --run
--CODE--
{
uintptr_t c_1 = 0;
bool c_2 = 0;
bool c_3 = 1;
int32_t c_4 = 42;
uintptr_t c_5 = func(printf);
uintptr_t c_6 = "hello %d!\n";
l_1 = START(l_4);
char d_2, l_2 = TAILCALL/2(l_1, c_5, c_6, c_4);
l_4 = UNREACHABLE(l_2, d_2);
}
--EXPECT--
test:
leaq 0x11(%rip), %rdi
movl $0x2a, %esi
movabsq $_IO_printf, %rax
jmpq *%rax
hello 42!
exit code = 10