Ifdef out unsupported .arm line (also - LLVM/Clang assembler does

not seem to like float literals at all. Please try to change these
into something else)
This commit is contained in:
twinaphex 2014-04-17 22:56:28 +02:00
parent 10f71265e5
commit 63b942b301
3 changed files with 7 additions and 2 deletions

View File

@ -383,7 +383,7 @@
"-DHAVE_GLSL",
"-DINLINE=inline",
"-DLSB_FIRST",
"-DHAVE_THREAD",
"-DHAVE_THREADS",
"-D__LIBRETRO__",
"-DRARCH_MOBILE",
"-std=gnu99",
@ -412,6 +412,7 @@
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
COPY_PHASE_STRIP = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_OPTIMIZATION_LEVEL = 2;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
@ -434,7 +435,7 @@
"-DHAVE_GLSL",
"-DINLINE=inline",
"-DLSB_FIRST",
"-DHAVE_THREAD",
"-DHAVE_THREADS",
"-D__LIBRETRO__",
"-DRARCH_MOBILE",
"-std=gnu99",

View File

@ -14,7 +14,9 @@
*/
#if defined(__ARM_NEON__) || defined(HAVE_NEON)
#ifndef __MACH__
.arm
#endif
.align 4
.globl process_sinc_neon_asm
.globl _process_sinc_neon_asm

View File

@ -14,7 +14,9 @@
*/
#if defined(__ARM_NEON__) || defined(HAVE_NEON)
#ifndef __MACH__
.arm
#endif
.align 4
.globl audio_convert_s16_float_asm