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

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. L0:
  3.     .quad    0xffffffffffffffff
  4.  
  5.     .globl    _tan
  6. _tan:
  7.     fldl    4(%esp)
  8.     fptan
  9.     fstsw
  10.     fstp    %st(0)
  11.     sahf
  12.     jnp    L1
  13. /*    fstp    %st(0) - if exception, there is nothing on the stack */
  14.     fldl    L0
  15. L1:
  16.     ret
  17.  
  18.