repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/llvm: Do not build with symbols
[minix3.git]
/
lib
/
libc
/
arch
/
i386
/
gen
/
fpgetprec.S
blob
1514bb480d707ae047d1bd7e8ed8c800ebda7b00
1
/* $NetBSD: fpgetprec.S,v 1.1 2011/03/26 19:51:41 christos Exp $ */
2
3
/*
4
* Written by J.T. Conklin, Apr 4, 1995
5
* Public domain.
6
*/
7
8
#include <machine/asm.h>
9
10
#ifdef WEAK_ALIAS
11
WEAK_ALIAS(fpgetprec, _fpgetprec)
12
ENTRY(_fpgetprec)
13
#else
14
ENTRY(fpgetprec)
15
#endif
16
subl $4,%esp
17
fnstcw (%esp)
18
movl (%esp),%eax
19
rorl $8,%eax
20
andl $3,%eax
21
addl $4,%esp
22
ret