mirror of
https://github.com/danog/ir.git
synced 2024-12-02 17:55:40 +01:00
25 lines
470 B
Plaintext
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"
|