mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-13 22:08:34 +00:00
Use more compatible .globl symbols in NEON ASM.
This commit is contained in:
parent
0ca24db260
commit
913aeabe47
@ -15,7 +15,7 @@
|
||||
|
||||
.arm
|
||||
.align 4
|
||||
.global process_sinc_neon_asm
|
||||
.globl process_sinc_neon_asm
|
||||
# void process_sinc_neon(float *out, const float *left, const float *right, const float *coeff, unsigned taps)
|
||||
# Assumes taps is >= 8, and a multiple of 8.
|
||||
process_sinc_neon_asm:
|
||||
|
@ -16,7 +16,7 @@
|
||||
.arm
|
||||
|
||||
.align 4
|
||||
.global audio_convert_s16_float_asm
|
||||
.globl audio_convert_s16_float_asm
|
||||
# audio_convert_s16_float_asm(float *out, const int16_t *in, size_t samples)
|
||||
audio_convert_s16_float_asm:
|
||||
# Hacky way to get a constant of 2^-15.
|
||||
@ -52,7 +52,7 @@ audio_convert_s16_float_asm:
|
||||
bx lr
|
||||
|
||||
.align 4
|
||||
.global audio_convert_float_s16_asm
|
||||
.globl audio_convert_float_s16_asm
|
||||
# audio_convert_float_s16_asm(int16_t *out, const float *in, size_t samples)
|
||||
audio_convert_float_s16_asm:
|
||||
# Hacky way to get a constant of 2^15.
|
||||
|
Loading…
Reference in New Issue
Block a user