public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
@ 2004-07-27 19:23 scott dot bailey at eds dot com
  2004-07-28  6:07 ` [Bug bootstrap/16787] " pinskia at gcc dot gnu dot org
                   ` (9 more replies)
  0 siblings, 10 replies; 19+ messages in thread
From: scott dot bailey at eds dot com @ 2004-07-27 19:23 UTC (permalink / raw)
  To: gcc-bugs

Bootstrap of gcc-3.4.1 fails using cc compiler under Tru64 V5.1B, trying to 
compile libiberty/floatformat.c. The macro NAN is defined as the constant 
expression "(0.0 / 0.0)", which is not compilable by HP's cc compiler.

The following kludgy patch was sufficient to get me past the problem, but is 
totally inappropriate "as-is" for a generic fix. :-)

*** libiberty/floatformat.c	Wed Dec  3 13:36:50 2003
--- libiberty/floatformat.c	Tue Jul 27 15:09:15 2004
***************
*** 43,49 ****
  #endif
  
  #ifndef NAN
! #define NAN (0.0 / 0.0)
  #endif
  
  static unsigned long get_field PARAMS ((const unsigned char *,
--- 43,50 ----
  #endif
  
  #ifndef NAN
! #include "float.h"
! #define NAN DBL_QNAN
  #endif
  
  static unsigned long get_field PARAMS ((const unsigned char *,

-- 
           Summary: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
           Product: gcc
           Version: 3.4.1
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: scott dot bailey at eds dot com
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: alphaev56-dec-osf5.1
  GCC host triplet: alphaev56-dec-osf5.1
GCC target triplet: alphaev56-dec-osf5.1


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
@ 2004-07-28  6:07 ` pinskia at gcc dot gnu dot org
  2004-07-28 14:12 ` scott dot bailey at eds dot com
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-28  6:07 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-07-28 06:07 -------
Looks like another bug in a DEC's (Compaq/HP's) compiler.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |build


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
  2004-07-28  6:07 ` [Bug bootstrap/16787] " pinskia at gcc dot gnu dot org
@ 2004-07-28 14:12 ` scott dot bailey at eds dot com
  2004-07-28 19:30 ` scott dot bailey at eds dot com
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: scott dot bailey at eds dot com @ 2004-07-28 14:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From scott dot bailey at eds dot com  2004-07-28 14:12 -------
Subject: RE:  NAN constant "(0.0/0.0)" cannot be comp
	iled by Tru64 cc

>Looks like another bug in a DEC's (Compaq/HP's) compiler.

Yeah, what a pain. It turns out my suggested patch isn't quite good enough,
as much later on in the bootstrap process (I think during the build of the
C++ stuff) the (re-)build of floatformat.c dies again with "DBL_QNAN not
defined"... It appears that Tru64's /usr/include/float.h may be getting
occluded by one or another of the gcc float.h files. (I know I was up past
at least stage 2 of the bootstrap when I went home last night.)

I had earlier tried bootstrapping with my installed gcc 3.3.3 compiler, but
that failed early on with an apparent error in one of the generated
Makefiles and I couldn't even be sure which was at fault, much less what was
triggering the error. So I thought fudging the NAN definition might be
easier... Ha ha ha...

I will try replacing the '#include "float.h"' in my fix with an inline
definition of the two lines or so from float.h that appear to be required to
define DBL_QNAN and report back on my success or lack thereof. It probably
will be tomorrow, my system doesn't exactly build like lightning. :-)

Cheers,

	Scott Bailey


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
  2004-07-28  6:07 ` [Bug bootstrap/16787] " pinskia at gcc dot gnu dot org
  2004-07-28 14:12 ` scott dot bailey at eds dot com
@ 2004-07-28 19:30 ` scott dot bailey at eds dot com
  2004-07-29 11:44 ` falk at debian dot org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: scott dot bailey at eds dot com @ 2004-07-28 19:30 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From scott dot bailey at eds dot com  2004-07-28 19:30 -------
Subject: RE:  NAN constant "(0.0/0.0)" cannot be comp
	iled by Tru64 cc

Well, I found that by preparing a patch that extracts two lines from
/usr/include/float.h and includes them in libiberty/floatformat.c for the
purpose of defining NAN, I was able to bootstrap from Tru64's cc and
complete the gcc build successfully.

However, my fear is that this patch isn't distributable since the header
file I'm borrowing the definitions from bears a Compaq Information
Technologies Group, L.P. copyright notice. :-( There actually are a number
of copyright statements, but the stuff I'm taking is from the "non POSIX"
section.

I'm open to more knowledgeable suggestions, but this may need to end up
getting listed as a known feature and I will open a problem report to HP and
see if it does any good.

Thanks anyway,

	Scott Bailey


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
                   ` (2 preceding siblings ...)
  2004-07-28 19:30 ` scott dot bailey at eds dot com
@ 2004-07-29 11:44 ` falk at debian dot org
  2004-07-29 14:02 ` scott dot bailey at eds dot com
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: falk at debian dot org @ 2004-07-29 11:44 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From falk at debian dot org  2004-07-29 11:44 -------
(In reply to comment #3)

> However, my fear is that this patch isn't distributable since the header
> file I'm borrowing the definitions from bears a Compaq Information
> Technologies Group, L.P. copyright notice. :-(

I do not think that matters. I mean, even if Compaq's math.h contains
#define M_PI 3.14159265358979
I am still allowed to use the same definition in my program.



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
                   ` (3 preceding siblings ...)
  2004-07-29 11:44 ` falk at debian dot org
@ 2004-07-29 14:02 ` scott dot bailey at eds dot com
  2004-07-30 14:54 ` scott dot bailey at eds dot com
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: scott dot bailey at eds dot com @ 2004-07-29 14:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From scott dot bailey at eds dot com  2004-07-29 14:02 -------
Subject: RE:  NAN constant "(0.0/0.0)" cannot be comp
	iled by Tru64 cc

>> However, my fear is that this patch isn't distributable since the header
>> file I'm borrowing the definitions from bears a Compaq Information
>> Technologies Group, L.P. copyright notice. :-(
>
>I do not think that matters. I mean, even if Compaq's math.h contains
>#define M_PI 3.14159265358979
>I am still allowed to use the same definition in my program.

I agree it's a fuzzy situation. They aren't actually defining a numerical
constant; instead they define DBL_QNAN in terms of a value referenced by an
external pointer that presumably is pointing to some hand-crafted "magic
bytes" :-) in their library. I had just literally copied the two lines
without thinking about it too much.

However, we may have a better answer at hand. I talked to their support team
this morning (case 3207169315) and they suggested adding "-ieee" to CFLAGS
for the bootstrap. On my little test program (abstracted from floatformat.c)
this works -- you get a warning about overflow (just like previous versions
of Tru64) instead of an error -- and the compile succeeds.

I am trying another rebuild to see if this approach works for the whole
compiler.

Fingers crossed,

	Scott


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
                   ` (4 preceding siblings ...)
  2004-07-29 14:02 ` scott dot bailey at eds dot com
@ 2004-07-30 14:54 ` scott dot bailey at eds dot com
  2004-09-02 13:54 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: scott dot bailey at eds dot com @ 2004-07-30 14:54 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From scott dot bailey at eds dot com  2004-07-30 14:54 -------
Subject: RE:  NAN constant "(0.0/0.0)" cannot be comp
	iled by Tru64 cc

Okay, I was able to get a good bootstrap doing this:

CC="cc -ieee" CFLAGS=-O2 /usr/local/bin/make bootstrap

The semi-obvious alternative, 'CC=cc CFLAGS="-O2 -ieee" ...' does not work
because after the compiler build succeeds, the make process then attempts to
build the c++ libraries using gcc with the supplied CFLAGS and then dies
because "-ieee" is not a valid gcc argument. Trying STAGE1_CFLAGS didn't
seem to do the right thing either, and I didn't have any other decent
guesses. :-)

Is it possible to teach configure that -ieee is needed when using the native
Tru64 cc compiler? (Well, "needed" for 5.1 and, it appears, "harmless" for
earlier versions.)

I have a couple more observations that I will open separate reports on.

Cheers,

	Scott


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
                   ` (5 preceding siblings ...)
  2004-07-30 14:54 ` scott dot bailey at eds dot com
@ 2004-09-02 13:54 ` pinskia at gcc dot gnu dot org
  2004-09-09 17:04 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-09-02 13:54 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-09-02 13:54 -------
*** Bug 17281 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mec dot gnu at mindspring
                   |                            |dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
                   ` (6 preceding siblings ...)
  2004-09-02 13:54 ` pinskia at gcc dot gnu dot org
@ 2004-09-09 17:04 ` pinskia at gcc dot gnu dot org
  2005-02-14 10:27 ` w dot northcott at unsw dot edu dot au
  2005-05-15  1:08 ` pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-09-09 17:04 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-09-09 17:04:15
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
                   ` (7 preceding siblings ...)
  2004-09-09 17:04 ` pinskia at gcc dot gnu dot org
@ 2005-02-14 10:27 ` w dot northcott at unsw dot edu dot au
  2005-05-15  1:08 ` pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 19+ messages in thread
From: w dot northcott at unsw dot edu dot au @ 2005-02-14 10:27 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From w dot northcott at unsw dot edu dot au  2005-02-13 22:55 -------
This is a documentation problem.    The current host specific docs at http://gcc.gnu.org/install/
specific.html#alpha*-*-* read:
*****************************
In Tru64 UNIX V5.1, Compaq introduced a new assembler that does not currently (2001-06-13) work 
with mips-tfile. As a workaround, we need to use the old assembler, invoked via the barely documented 
-oldas option. To bootstrap GCC, you either need to use the Compaq C Compiler:
        % CC=cc srcdir/configure [options] [target]
or you can use a copy of GCC 2.95.3 or higher built on Tru64 UNIX V4.0:
        % CC=gcc -Wa,-oldas srcdir/configure [options] [target]
*****************************
This is misleading and unhelpful:
1.  The only effect most people will observe from the assembler change is that gcc binaries built on 
older (pre 5.1) versions of Tru64 will not run on 5.1.
2.  The -oldas seems to be unecessary.
3.  The -ieee flag is vital to bootstrap using the DEC compiler.  So the configure suggestion should 
read: 'To bootstrap GCC, you either need to use the Compaq C Compiler:
        % CC="cc -ieee" srcdir/configure [options] [target]'

Could someone please please fix the documentation.
Bill Northcott


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
  2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
                   ` (8 preceding siblings ...)
  2005-02-14 10:27 ` w dot northcott at unsw dot edu dot au
@ 2005-05-15  1:08 ` pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-15  1:08 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |documentation
   Last reconfirmed|2004-12-09 00:22:13         |2005-05-15 01:06:07
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
       [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2006-02-17  1:13 ` sayle at gcc dot gnu dot org
@ 2006-02-17  1:21 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-17  1:21 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.0.3 4.1.0 4.2.0 3.4.6
   Target Milestone|4.0.3                       |3.4.6


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
       [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2006-02-16 20:17 ` pinskia at gcc dot gnu dot org
@ 2006-02-17  1:13 ` sayle at gcc dot gnu dot org
  2006-02-17  1:21 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 19+ messages in thread
From: sayle at gcc dot gnu dot org @ 2006-02-17  1:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from sayle at gcc dot gnu dot org  2006-02-17 01:13 -------
Subject: Bug 16787

Author: sayle
Date: Fri Feb 17 01:13:38 2006
New Revision: 111172

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111172
Log:
2006-02-16  Roger Sayle  <roger@eyesopen.com>
            R. Scott Bailey  <scott.bailey@eds.com>
            Bill Northcott  <w.northcott@unsw.edu.au>

        PR bootstrap/16787
        * floatformat.c: Include <float.h> where available.
        (NAN): Use value of DBL_QNAN if defined, and NAN isn't.


Modified:
    branches/gcc-3_4-branch/libiberty/ChangeLog
    branches/gcc-3_4-branch/libiberty/floatformat.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
       [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2006-02-16 20:15 ` sayle at gcc dot gnu dot org
@ 2006-02-16 20:17 ` pinskia at gcc dot gnu dot org
  2006-02-17  1:13 ` sayle at gcc dot gnu dot org
  2006-02-17  1:21 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-16 20:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from pinskia at gcc dot gnu dot org  2006-02-16 20:17 -------
And for 4.0.3 now.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.0                       |4.0.3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
       [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2006-02-16 17:43 ` pinskia at gcc dot gnu dot org
@ 2006-02-16 20:15 ` sayle at gcc dot gnu dot org
  2006-02-16 20:17 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 19+ messages in thread
From: sayle at gcc dot gnu dot org @ 2006-02-16 20:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from sayle at gcc dot gnu dot org  2006-02-16 20:15 -------
Subject: Bug 16787

Author: sayle
Date: Thu Feb 16 20:15:10 2006
New Revision: 111147

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111147
Log:
2006-02-16  Roger Sayle  <roger@eyesopen.com>
            R. Scott Bailey  <scott.bailey@eds.com>
            Bill Northcott  <w.northcott@unsw.edu.au>

        PR bootstrap/16787
        * floatformat.c: Include <float.h> where available.
        (NAN): Use value of DBL_QNAN if defined, and NAN isn't.


Modified:
    branches/gcc-4_0-branch/libiberty/ChangeLog
    branches/gcc-4_0-branch/libiberty/floatformat.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
       [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2006-02-16 16:45 ` sayle at gcc dot gnu dot org
@ 2006-02-16 17:43 ` pinskia at gcc dot gnu dot org
  2006-02-16 20:15 ` sayle at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-16 17:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from pinskia at gcc dot gnu dot org  2006-02-16 17:43 -------
Fixed.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.1.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
       [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
  2005-11-23 15:04 ` pinskia at gcc dot gnu dot org
  2006-02-11 16:50 ` sayle at gcc dot gnu dot org
@ 2006-02-16 16:45 ` sayle at gcc dot gnu dot org
  2006-02-16 17:43 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 19+ messages in thread
From: sayle at gcc dot gnu dot org @ 2006-02-16 16:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from sayle at gcc dot gnu dot org  2006-02-16 16:45 -------
Subject: Bug 16787

Author: sayle
Date: Thu Feb 16 16:45:49 2006
New Revision: 111145

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111145
Log:
2006-02-16  Roger Sayle  <roger@eyesopen.com>
            R. Scott Bailey  <scott.bailey@eds.com>
            Bill Northcott  <w.northcott@unsw.edu.au>

        PR bootstrap/16787
        * floatformat.c: Include <float.h> where available.
        (NAN): Use value of DBL_QNAN if defined, and NAN isn't.


Modified:
    branches/gcc-4_1-branch/libiberty/ChangeLog
    branches/gcc-4_1-branch/libiberty/floatformat.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
       [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
  2005-11-23 15:04 ` pinskia at gcc dot gnu dot org
@ 2006-02-11 16:50 ` sayle at gcc dot gnu dot org
  2006-02-16 16:45 ` sayle at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 19+ messages in thread
From: sayle at gcc dot gnu dot org @ 2006-02-11 16:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from sayle at gcc dot gnu dot org  2006-02-11 16:50 -------
Subject: Bug 16787

Author: sayle
Date: Sat Feb 11 16:50:41 2006
New Revision: 110873

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=110873
Log:
2006-02-11  Roger Sayle  <roger@eyesopen.com>
            R. Scott Bailey  <scott.bailey@eds.com>
            Bill Northcott  <w.northcott@unsw.edu.au>

        PR bootstrap/16787
        * floatformat.c: Include <float.h> where available.
        (NAN): Use value of DBL_QNAN if defined, and NAN isn't.


Modified:
    trunk/libiberty/ChangeLog
    trunk/libiberty/floatformat.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug bootstrap/16787] NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc
       [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
@ 2005-11-23 15:04 ` pinskia at gcc dot gnu dot org
  2006-02-11 16:50 ` sayle at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-23 15:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from pinskia at gcc dot gnu dot org  2005-11-23 15:04 -------
*** Bug 25002 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gin at mo dot msk dot ru


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16787


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2006-02-17  1:21 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-07-27 19:23 [Bug bootstrap/16787] New: NAN constant "(0.0/0.0)" cannot be compiled by Tru64 cc scott dot bailey at eds dot com
2004-07-28  6:07 ` [Bug bootstrap/16787] " pinskia at gcc dot gnu dot org
2004-07-28 14:12 ` scott dot bailey at eds dot com
2004-07-28 19:30 ` scott dot bailey at eds dot com
2004-07-29 11:44 ` falk at debian dot org
2004-07-29 14:02 ` scott dot bailey at eds dot com
2004-07-30 14:54 ` scott dot bailey at eds dot com
2004-09-02 13:54 ` pinskia at gcc dot gnu dot org
2004-09-09 17:04 ` pinskia at gcc dot gnu dot org
2005-02-14 10:27 ` w dot northcott at unsw dot edu dot au
2005-05-15  1:08 ` pinskia at gcc dot gnu dot org
     [not found] <bug-16787-6578@http.gcc.gnu.org/bugzilla/>
2005-11-23 15:04 ` pinskia at gcc dot gnu dot org
2006-02-11 16:50 ` sayle at gcc dot gnu dot org
2006-02-16 16:45 ` sayle at gcc dot gnu dot org
2006-02-16 17:43 ` pinskia at gcc dot gnu dot org
2006-02-16 20:15 ` sayle at gcc dot gnu dot org
2006-02-16 20:17 ` pinskia at gcc dot gnu dot org
2006-02-17  1:13 ` sayle at gcc dot gnu dot org
2006-02-17  1:21 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).