mirror of
https://github.com/mirror/tinycc.git
synced 2024-12-28 04:00:06 +08:00
11 lines
146 B
ArmAsm
11 lines
146 B
ArmAsm
|
.text
|
||
|
.align 2
|
||
|
.global alloca
|
||
|
.type alloca, %function
|
||
|
alloca:
|
||
|
rsb sp, r0, sp
|
||
|
bic sp, sp, #7
|
||
|
mov r0, sp
|
||
|
mov pc, lr
|
||
|
.size alloca, .-alloca
|