mirror of git://sourceware.org/git/glibc.git
47 lines
759 B
ArmAsm
47 lines
759 B
ArmAsm
#include <sysdep.h>
|
|
|
|
.text
|
|
ENTRY(__fmin)
|
|
.type __fmin, @gnu_indirect_function
|
|
# ifdef SHARED
|
|
SETUP_PIC_REG_LEAF(o3, o5)
|
|
# endif
|
|
# ifdef HAVE_AS_VIS3_SUPPORT
|
|
set HWCAP_SPARC_VIS3, %o1
|
|
andcc %o0, %o1, %g0
|
|
be 9f
|
|
nop
|
|
# ifdef SHARED
|
|
sethi %gdop_hix22(__fmin_vis3), %o1
|
|
xor %o1, %gdop_lox10(__fmin_vis3), %o1
|
|
# else
|
|
set __fmin_vis3, %o1
|
|
# endif
|
|
ba 10f
|
|
nop
|
|
9:
|
|
# endif
|
|
# ifdef SHARED
|
|
sethi %gdop_hix22(__fmin_generic), %o1
|
|
xor %o1, %gdop_lox10(__fmin_generic), %o1
|
|
# else
|
|
set __fmin_generic, %o1
|
|
# endif
|
|
# ifdef HAVE_AS_VIS3_SUPPORT
|
|
10:
|
|
# endif
|
|
# ifdef SHARED
|
|
add %o3, %o1, %o1
|
|
# endif
|
|
retl
|
|
mov %o1, %o0
|
|
END(__fmin)
|
|
weak_alias (__fmin, fmin)
|
|
|
|
# undef weak_alias
|
|
# define weak_alias(a, b)
|
|
|
|
#define __fmin __fmin_generic
|
|
|
|
#include "../s_fmin.S"
|