ir/tests/debug/call-O0.irt

32 lines
483 B
Plaintext
Raw Normal View History

2022-04-21 23:11:34 +02:00
--TEST--
Simple CALL -O0
--ARGS--
-S -O0 --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);
int32_t d_2, l_2 = CALL/2(l_1, c_5, c_6, c_4);
l_4 = RETURN(l_2, d_2);
}
--EXPECT--
test:
subq $8, %rsp
leaq 0x1d(%rip), %rdi
2022-04-21 23:11:34 +02:00
movl $0x2a, %esi
movabsq $_IO_printf, %rax
callq *%rax
movl %eax, (%rsp)
movl (%rsp), %eax
addq $8, %rsp
retq
hello 42!
exit code = 10