Home | History | Annotate | Line # | Download | only in gen
fpgetsticky.S revision 1.2
      1  1.2  thorpej /*	$NetBSD: fpgetsticky.S,v 1.2 2002/01/13 21:45:51 thorpej Exp $	*/
      2  1.1     fvdl 
      3  1.1     fvdl /*
      4  1.1     fvdl  * Written by J.T. Conklin, Apr 4, 1995
      5  1.1     fvdl  * Public domain.
      6  1.1     fvdl  */
      7  1.1     fvdl 
      8  1.1     fvdl #include <machine/asm.h>
      9  1.1     fvdl 
     10  1.2  thorpej #ifdef WEAK_ALIAS
     11  1.2  thorpej WEAK_ALIAS(fpgetsticky, _fpgetsticky)
     12  1.2  thorpej ENTRY(_fpgetsticky)
     13  1.2  thorpej #else
     14  1.1     fvdl ENTRY(fpgetsticky)
     15  1.2  thorpej #endif
     16  1.1     fvdl 	fnstsw -4(%rsp)
     17  1.1     fvdl 	movl -4(%rsp),%eax
     18  1.1     fvdl 	andl $63,%eax
     19  1.1     fvdl 	ret
     20