2012-11-15 12:06:41 +01:00
|
|
|
/* $NetBSD: fpgetround.S,v 1.6 2011/09/30 23:42:00 christos Exp $ */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, Apr 4, 1995
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
|
|
|
|
2012-11-15 12:06:41 +01:00
|
|
|
/*
|
|
|
|
* XXX load only x87 state.
|
|
|
|
*/
|
|
|
|
|
2011-02-14 20:36:03 +01:00
|
|
|
#ifdef WEAK_ALIAS
|
|
|
|
WEAK_ALIAS(fpgetround, _fpgetround)
|
|
|
|
ENTRY(_fpgetround)
|
|
|
|
#else
|
|
|
|
ENTRY(fpgetround)
|
|
|
|
#endif
|
2012-11-15 12:06:41 +01:00
|
|
|
fnstcw -4(%esp)
|
|
|
|
movl -4(%esp), %eax
|
|
|
|
andl $0x00000c00, %eax
|
2011-02-14 20:36:03 +01:00
|
|
|
ret
|