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