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 / atan2l.S < prev    next >
Encoding:
Text File  |  1994-10-10  |  888 b   |  36 lines

  1. /* Copyright (C) 1993  Hongjiu Lu and Olaf Flebbe
  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    "atan2l.S"
  16.     .text
  17. #ifdef __ELF__
  18. #define _atan2l atan2l
  19. #endif
  20.     .globl    _atan2l
  21.  
  22. #ifdef __i486__
  23.     .align    4,0x90
  24. #else
  25.     .align    2,0x90
  26. #endif
  27. _atan2l:
  28.     fldt    4(%esp)
  29.     fldt    16(%esp)
  30.     fpatan
  31.     ret
  32.  
  33. #ifdef __ELF__
  34.     .type atan2l,@function
  35. #endif
  36.