This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: rint function (continued)


In gnu assembler language rint is:

	.globl	_rint
_rint:
        fldl    4(%esp)	; load double argument in the fpu
        push    %eax	; make space in stack for result
        fistpl  (%esp)	; store the rounded value there as 32 bit int
        popl    %eax	; pop the result from the stack
        ret		; done

This takes the current rounding mode into account, as rint should. Using this
function makes your program pass all your tests.

Enjoy!

-- 
Jacob Navia	Logiciels/Informatique
41 rue Maurice Ravel			Tel 01 48.23.51.44
93430 Villetaneuse 			Fax 01 48.23.95.39
France
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]