1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

ARM: check for VFP register arguments

Originally committed as revision 19474 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2009-07-20 22:30:24 +00:00
parent 5cf20d07ad
commit ce742de22c
2 changed files with 15 additions and 0 deletions

6
configure vendored
View File

@ -958,6 +958,7 @@ HAVE_LIST="
termios_h
threads
truncf
vfp_args
VirtualAlloc
winsock2_h
xform_asm
@ -2042,6 +2043,11 @@ fi
# check for assembler specific support
enabled arm && check_ld <<EOF && enable vfp_args
__asm__ (".eabi_attribute 28, 1");
int main(void) { return 0; }
EOF
enabled mips && check_asm loongson '"dmult.g $1, $2, $3"'
enabled ppc && check_asm dcbzl '"dcbzl 0, 1"'

View File

@ -45,3 +45,12 @@
ldr \rd, =\val
#endif
.endm
#if HAVE_VFP_ARGS
.eabi_attribute 28, 1
# define VFP
# define NOVFP @
#else
# define VFP @
# define NOVFP
#endif