ir/tests/llvm/alloca_002.irt

18 lines
269 B
Plaintext
Raw Normal View History

2023-09-28 19:44:45 +02:00
--TEST--
002: alloca function
--ARGS--
--emit-llvm
--CODE--
{
l_1 = START(l_4);
int32_t x = PARAM(l_1, "x", 1);
uintptr_t ret, l_2 = ALLOCA(l_1, x);
l_4 = RETURN(l_2, ret);
}
--EXPECT--
define ptr @test(i32 %d2)
{
%d3 = alloca i8, i32 %d2, align 16
ret ptr %d3
}