xref: /openbsd/lib/libc/arch/i386/gen/fpgetsticky.S (revision 7b36286a)
1/* $OpenBSD: fpgetsticky.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
2/*
3 * Written by J.T. Conklin, Apr 4, 1995
4 * Public domain.
5 */
6
7#include <machine/asm.h>
8
9ENTRY(fpgetsticky)
10	subl $4,%esp
11	fnstsw (%esp)
12	movl (%esp),%eax
13	andl $63,%eax
14	addl $4,%esp
15	ret
16