home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / math / acos.s next >
Encoding:
Text File  |  1994-11-23  |  289 b   |  23 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2.     .text
  3. LC0:
  4.     .double 0d1.00000000000000000000e+00
  5.  
  6.     .globl    _acos
  7. _acos:
  8.     fldl    4(%esp)
  9.     fld1
  10.     fsubp    %st(0),%st(1)
  11.     fsqrt
  12.  
  13.     fldl    4(%esp)
  14.     fld1
  15.     faddp    %st(0),%st(1)
  16.     fsqrt
  17.  
  18.     fpatan
  19.  
  20.     fld    %st(0)
  21.     faddp
  22.     ret
  23.