emacs-devel
[Top][All Lists]
Advanced

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

Re: (elisp)Numbers


From: Richard Stallman
Subject: Re: (elisp)Numbers
Date: Sat, 25 Oct 2003 18:26:38 -0400

    Here's the code I see with "gcc -E -O2" on fencepost (I reformatted it
    for better readability):

        extern __inline double sqrt ( double __x) 
        { 
          register double __result;
          __asm __volatile__ ( "fsqrt" : "=t" (__result) : "0" (__x) );
           return __result; 
        }

1. where does this code come from?  which file in which package?

2. i see that my CFLAGS setting to turn off inlining got lost
when i reran configure.  so i put that back in and recompiled,
and it went away.




reply via email to

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