Add missing symbol type directives.
This commit is contained in:
parent
3bfdcc979d
commit
092799072f
|
@ -1,5 +1,7 @@
|
|||
.globl crash1
|
||||
.type crash1, %function
|
||||
.globl crashnostack
|
||||
.type crashnostack, %function
|
||||
|
||||
crash1:
|
||||
ldr r0, =0xa5a50000
|
||||
|
@ -25,4 +27,4 @@ crashnostack:
|
|||
mov sp, #0
|
||||
mov r0, #0
|
||||
ldr r0, [r0]
|
||||
b .
|
||||
b .
|
||||
|
|
|
@ -24,17 +24,25 @@
|
|||
.align
|
||||
|
||||
.global android_atomic_write
|
||||
.type android_atomic_write, %function
|
||||
|
||||
.global android_atomic_inc
|
||||
.type android_atomic_inc, %function
|
||||
.global android_atomic_dec
|
||||
.type android_atomic_dec, %function
|
||||
|
||||
.global android_atomic_add
|
||||
.type android_atomic_add, %function
|
||||
.global android_atomic_and
|
||||
.type android_atomic_and, %function
|
||||
.global android_atomic_or
|
||||
.type android_atomic_or, %function
|
||||
|
||||
.global android_atomic_swap
|
||||
.type android_atomic_swap, %function
|
||||
|
||||
.global android_atomic_cmpxchg
|
||||
.type android_atomic_cmpxchg, %function
|
||||
|
||||
/*
|
||||
* ----------------------------------------------------------------------------
|
||||
|
|
|
@ -19,17 +19,25 @@
|
|||
.align
|
||||
|
||||
.global android_atomic_write
|
||||
.type android_atomic_write, %function
|
||||
|
||||
.global android_atomic_inc
|
||||
.type android_atomic_inc, %function
|
||||
.global android_atomic_dec
|
||||
.type android_atomic_dec, %function
|
||||
|
||||
.global android_atomic_add
|
||||
.type android_atomic_add, %function
|
||||
.global android_atomic_and
|
||||
.type android_atomic_and, %function
|
||||
.global android_atomic_or
|
||||
.type android_atomic_or, %function
|
||||
|
||||
.global android_atomic_swap
|
||||
.type android_atomic_swap, %function
|
||||
|
||||
.global android_atomic_cmpxchg
|
||||
.type android_atomic_cmpxchg, %function
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue