CVSROOT: /cvs Module name: src Changes by: marty...@cvs.openbsd.org 2009/04/25 05:03:35
Modified files: lib/libm/arch/amd64: s_scalbn.S s_scalbnf.S Log message: fix scalbn, scalbnf, frexpf on amd64. don't use double arg float/double prologue/epilogue, since the second argument is not float/double. were never working properly (always returned inf). actually, should help other math funcs (like pow) too, since they use it internally tested by kurt@; devel/boost fp regresses are working better now. ok kurt@