ir/tests/llvm/call_001.irt
2023-09-29 11:30:53 +03:00

25 lines
470 B
Plaintext

--TEST--
Simple CALL
--ARGS--
--emit-llvm
--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, 4);
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--
define i32 @test()
{
%d2 = call i32 (...) @printf(ptr @.str6, i32 42)
ret i32 %d2
}
declare void @printf()
@.str6 = private unnamed_addr constant [12 x i8] c"hello %d!\0A\00"