mirror of
https://github.com/danog/ir.git
synced 2024-12-02 17:55:40 +01:00
21 lines
431 B
Plaintext
21 lines
431 B
Plaintext
|
--TEST--
|
||
|
Indirect Tail CALL
|
||
|
--ARGS--
|
||
|
--emit-llvm
|
||
|
--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 = TAILCALL/2(l_1, f, c_6, p);
|
||
|
l_4 = UNREACHABLE(l_2);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
define i32 @test(ptr %d2, i32 %d3)
|
||
|
{
|
||
|
%d4 = tail call i32 %d2(ptr @.str4, i32 %d3)
|
||
|
ret i32 %d4
|
||
|
}
|
||
|
@.str4 = private unnamed_addr constant [12 x i8] c"hello %d!\0A\00"
|