Home | History | Annotate | Line # | Download | only in gen
fpgetsticky.S revision 1.1
      1 /*	$NetBSD: fpgetsticky.S,v 1.1 2001/06/19 00:25:03 fvdl Exp $	*/
      2 
      3 /*
      4  * Written by J.T. Conklin, Apr 4, 1995
      5  * Public domain.
      6  */
      7 
      8 #include <machine/asm.h>
      9 
     10 ENTRY(fpgetsticky)
     11 	fnstsw -4(%rsp)
     12 	movl -4(%rsp),%eax
     13 	andl $63,%eax
     14 	ret
     15