ir/tests/llvm/call_001.irt

25 lines
498 B
Plaintext
Raw Normal View History

2023-09-28 19:44:45 +02:00
--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;
2023-11-30 19:10:41 +01:00
uintptr_t c_5 = func printf(uintptr_t, ...): int32_t;
2023-09-28 19:44:45 +02:00
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()
{
2023-09-29 10:30:53 +02:00
%d2 = call i32 (...) @printf(ptr @.str6, i32 42)
2023-09-28 19:44:45 +02:00
ret i32 %d2
}
2023-11-30 19:10:41 +01:00
declare i32 @printf(ptr, ...)
2023-09-28 19:44:45 +02:00
@.str6 = private unnamed_addr constant [12 x i8] c"hello %d!\0A\00"