mirror of
https://github.com/danog/ir.git
synced 2024-11-26 20:34:53 +01:00
28 lines
478 B
Plaintext
Executable File
28 lines
478 B
Plaintext
Executable File
--TEST--
|
|
Indirect CALL
|
|
--TARGET--
|
|
Windows-x86_64
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
uintptr_t c_6 = "hello %d!\n";
|
|
l_1 = START(l_4);
|
|
uintptr_t f = PARAM(l_1, "f", 1);
|
|
int32_t p = PARAM(l_1, "p", 2);
|
|
int32_t d_2, l_2 = CALL/2(l_1, f, c_6, p);
|
|
l_4 = RETURN(l_2, d_2);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
subq $0x28, %rsp
|
|
movq %rcx, %rax
|
|
leaq .L1(%rip), %rcx
|
|
callq *%rax
|
|
addq $0x28, %rsp
|
|
retq
|
|
.rodata
|
|
.db 0x90, 0x90, 0x90
|
|
.L1:
|
|
.db 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x25, 0x64, 0x21, 0x0a, 0x00
|