avr-libc-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [avr-libc-dev] libm/fplib/irexp.S refers to "fplib-as.inc"


From: Joerg Wunsch
Subject: Re: [avr-libc-dev] libm/fplib/irexp.S refers to "fplib-as.inc"
Date: Thu, 9 Jan 2003 22:03:21 +0100
User-agent: Mutt/1.2.5i

As E. Weddington wrote:

> > I'm currently not in the mood of thinking whether fixing this will
> > make it work.  I think we should simply drop that file instead.
> 
> +1

After some private discussion with Philip, i eventually had a closer
look.  This function does about the equivalent of the following:

int
irexp(double d)
{
        int i;

        (void)frexp(d, &i);
        return i;
}

I doubt its usefulness: after all, frexp() /splits/ the number into
its two substantial parts.  But what might it be good for to throw
one of these parts away immediately?

I'll cvs rm it.

-- 
J"org Wunsch                                           Unix support engineer
address@hidden        http://www.interface-systems.de/~j/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]