Add incomplet long double math support to libmingwex.a
This commit is contained in:
19
winsup/mingw/mingwex/math/scalbn.S
Normal file
19
winsup/mingw/mingwex/math/scalbn.S
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||||
* Public domain.
|
||||
*/
|
||||
|
||||
.file "scalbn.S"
|
||||
.text
|
||||
.align 4
|
||||
.globl _scalbn
|
||||
.def _scalbn; .scl 2; .type 32; .endef
|
||||
_scalbn:
|
||||
fildl 12(%esp)
|
||||
fldl 4(%esp)
|
||||
fscale
|
||||
fstp %st(1)
|
||||
ret
|
||||
|
||||
.globl _scalbln
|
||||
.set _scalbln,_scalbn
|
Reference in New Issue
Block a user