mirror of
https://github.com/fluencelabs/musl
synced 2025-07-31 22:31:58 +00:00
mark mips crt code as code
otherwise disassemblers treat it as data.
This commit is contained in:
@@ -4,6 +4,8 @@
|
|||||||
.weak _fini
|
.weak _fini
|
||||||
.global __start
|
.global __start
|
||||||
.global _start
|
.global _start
|
||||||
|
.type __start,@function
|
||||||
|
.type _start,@function
|
||||||
__start:
|
__start:
|
||||||
_start:
|
_start:
|
||||||
subu $fp, $fp, $fp # Zero the frame pointer.
|
subu $fp, $fp, $fp # Zero the frame pointer.
|
||||||
|
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
.section .init
|
.section .init
|
||||||
.global _init
|
.global _init
|
||||||
|
.type _init,@function
|
||||||
.align 2
|
.align 2
|
||||||
_init:
|
_init:
|
||||||
subu $sp,$sp,32
|
subu $sp,$sp,32
|
||||||
@@ -10,6 +11,7 @@ _init:
|
|||||||
|
|
||||||
.section .fini
|
.section .fini
|
||||||
.global _fini
|
.global _fini
|
||||||
|
.type _fini,@function
|
||||||
.align 2
|
.align 2
|
||||||
_fini:
|
_fini:
|
||||||
subu $sp,$sp,32
|
subu $sp,$sp,32
|
||||||
|
Reference in New Issue
Block a user