home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / linux / i386 / math / asinhl.S < prev    next >
Encoding:
Text File  |  1994-10-10  |  943 b   |  43 lines

  1. /* Copyright (C) 1993  Hongjiu Lu
  2.    Changed by Olaf Flebbe for long double
  3. This file is part of the Linux C Library.
  4.  
  5. The Linux C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public License as
  7. published by the Free Software Foundation; either version 2 of the
  8. License, or (at your option) any later version.
  9.  
  10. The Linux C Library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. Library General Public License for more details. */
  14.  
  15.     .file    "asinhl.S"
  16.  
  17.     .text
  18. #ifdef __ELF__
  19. #define _asinhl asinhl
  20. #endif
  21.     .globl    _asinhl
  22.  
  23. #ifdef    __i486__
  24.     .align    4,0x90
  25. #else
  26.     .align    2,0x90
  27. #endif
  28. _asinhl:
  29.     fldln2
  30.     fldt    4(%esp)
  31.     fld    %st
  32.     fmul    %st(1),%st
  33.     fld1
  34.     faddp    %st,%st(1)
  35.     fsqrt   
  36.     faddp    %st,%st(1)
  37.     fyl2x
  38.     ret
  39.  
  40. #ifdef __ELF__
  41.     .type asinhl,@function
  42. #endif
  43.