mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
92ae5818d2
See upstream patch: https://www.openwall.com/lists/musl/2024/10/10/4
16 lines
180 B
ArmAsm
Vendored
16 lines
180 B
ArmAsm
Vendored
.syntax unified
|
|
|
|
.section .init
|
|
.global _init
|
|
.type _init,%function
|
|
.align 2
|
|
_init:
|
|
push {r0,lr}
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini,%function
|
|
.align 2
|
|
_fini:
|
|
push {r0,lr}
|