mirror of
https://github.com/danog/ir.git
synced 2024-11-30 04:39:43 +01:00
23 lines
314 B
Plaintext
23 lines
314 B
Plaintext
--TEST--
|
|
001: alloca function
|
|
--TARGET--
|
|
aarch64
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
int32_t size = 10;
|
|
l_1 = START(l_4);
|
|
uintptr_t ret, l_2 = ALLOCA(l_1, size);
|
|
l_4 = RETURN(l_2, ret);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
stp x29, x30, [sp, #-0x10]!
|
|
mov x29, sp
|
|
sub sp, sp, #0x10
|
|
mov x0, sp
|
|
mov sp, x29
|
|
ldp x29, x30, [sp], #0x10
|
|
ret
|