2012-09-17 11:09:12 +02:00
|
|
|
/* $NetBSD: fpgetsticky.c,v 1.8 2012/03/20 16:19:56 matt Exp $ */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, Apr 11, 1995
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
2012-09-17 11:09:12 +02:00
|
|
|
__RCSID("$NetBSD: fpgetsticky.c,v 1.8 2012/03/20 16:19:56 matt Exp $");
|
2011-02-14 20:36:03 +01:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
|
|
|
#include "namespace.h"
|
|
|
|
|
|
|
|
#include <ieeefp.h>
|
|
|
|
|
|
|
|
#ifdef __weak_alias
|
|
|
|
__weak_alias(fpgetsticky,_fpgetsticky)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
fp_except
|
2012-09-17 11:09:12 +02:00
|
|
|
fpgetsticky(void)
|
2011-02-14 20:36:03 +01:00
|
|
|
{
|
2012-09-17 11:09:12 +02:00
|
|
|
fp_except x;
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
__asm("cfc1 %0,$31" : "=r" (x));
|
|
|
|
return (x >> 2) & 0x1f;
|
|
|
|
}
|