fpgetsticky.S revision 1.5
11.5Sperry/*	$NetBSD: fpgetsticky.S,v 1.5 1998/01/09 03:45:05 perry Exp $	*/
21.5Sperry
31.1Sjtc/*
41.1Sjtc * Written by J.T. Conklin, Apr 4, 1995
51.1Sjtc * Public domain.
61.1Sjtc */
71.1Sjtc
81.1Sjtc#include <machine/asm.h>
91.1Sjtc
101.2SjtcENTRY(fpgetsticky)
111.1Sjtc	subl $4,%esp
121.1Sjtc	fnstsw (%esp)
131.3Smycroft	movl (%esp),%eax
141.1Sjtc	andl $63,%eax
151.1Sjtc	addl $4,%esp
161.1Sjtc	ret
17