1/* 2 * Written by J.T. Conklin, Apr 4, 1995 3 * Public domain. 4 */ 5 6#include <machine/asm.h> 7 8#if defined(LIBC_SCCS) 9 .text 10 .asciz "$OpenBSD: fpgetsticky.S,v 1.2 1996/08/19 08:12:24 tholo Exp $" 11#endif 12 13ENTRY(fpgetsticky) 14 subl $4,%esp 15 fnstsw (%esp) 16 movl (%esp),%eax 17 andl $63,%eax 18 addl $4,%esp 19 ret 20