public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ada/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
@ 2004-10-01 23:10 ` pinskia at gcc dot gnu dot org
  2004-10-02  0:38 ` [Bug debug/17787] " pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-01 23:10 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.0.0


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


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

* [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
@ 2004-10-01 23:10 pinskia at gcc dot gnu dot org
  2004-10-01 23:10 ` [Bug ada/17787] " pinskia at gcc dot gnu dot org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-01 23:10 UTC (permalink / raw)
  To: gcc-bugs

Since -g enables -feliminate-unused-debug-symbols by default on Darwin and uses stabs by default, 
this causes a bootstrap  failure since the number of symbols in the queue just keeps on going up and 
up.

This could either be a front-end bug or a debug bug, I am keeping this as an Ada front-end bug for 
now.

-- 
           Summary: [4.0 Regression] Ada does not bootstrap on darwin
                    because of -feliminate-unused-debug-symbols
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code, build
          Severity: critical
          Priority: P2
         Component: ada
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug debug/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
  2004-10-01 23:10 ` [Bug ada/17787] " pinskia at gcc dot gnu dot org
@ 2004-10-02  0:38 ` pinskia at gcc dot gnu dot org
  2004-10-02  0:50 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-02  0:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-10-02 00:38 -------
Patch posted here: <http://gcc.gnu.org/ml/gcc-patches/2004-10/msg00107.html>.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
          Component|ada                         |debug
     Ever Confirmed|                            |1
           Keywords|                            |patch
   Last reconfirmed|0000-00-00 00:00:00         |2004-10-02 00:38:36
               date|                            |


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


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

* [Bug debug/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
  2004-10-01 23:10 ` [Bug ada/17787] " pinskia at gcc dot gnu dot org
  2004-10-02  0:38 ` [Bug debug/17787] " pinskia at gcc dot gnu dot org
@ 2004-10-02  0:50 ` pinskia at gcc dot gnu dot org
  2004-10-02  2:34 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-02  0:50 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-10-02 00:50 -------
Ada still does not bootstrap after my patch but that is a different problem, it is a code gen one and I 
don't have time to investigate the problem.

-- 


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


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

* [Bug debug/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2004-10-02  0:50 ` pinskia at gcc dot gnu dot org
@ 2004-10-02  2:34 ` pinskia at gcc dot gnu dot org
  2004-10-02  2:49 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-02  2:34 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-10-02 02:34 -------
More information on the building problem with the code gen:
loop in csets.adb:1150-1152 is a loop from ((unsigned)-1) to 0 which means it is a long loop and is 
wrong, it should be just from 256 (just like the loop above).
This might the cause for all of the failures I do not know.

-- 


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


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

* [Bug debug/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2004-10-02  2:34 ` pinskia at gcc dot gnu dot org
@ 2004-10-02  2:49 ` pinskia at gcc dot gnu dot org
  2004-10-05  4:31 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-02  2:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-10-02 02:49 -------
And that bug looks like a do loop problem.

-- 


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


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

* [Bug debug/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2004-10-02  2:49 ` pinskia at gcc dot gnu dot org
@ 2004-10-05  4:31 ` pinskia at gcc dot gnu dot org
  2004-10-05 12:36 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-05  4:31 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pinskia at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED


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


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

* [Bug debug/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2004-10-05  4:31 ` pinskia at gcc dot gnu dot org
@ 2004-10-05 12:36 ` pinskia at gcc dot gnu dot org
  2004-10-06 22:13 ` pinskia at gcc dot gnu dot org
  2004-10-06 22:13 ` cvs-commit at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-05 12:36 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-10-05 12:36 -------
*** Bug 17840 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |awreynolds at mac dot com


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


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

* [Bug debug/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2004-10-06 22:13 ` pinskia at gcc dot gnu dot org
@ 2004-10-06 22:13 ` cvs-commit at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-10-06 22:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-10-06 22:13 -------
Subject: Bug 17787

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	pinskia@gcc.gnu.org	2004-10-06 22:13:15

Modified files:
	gcc            : ChangeLog dbxout.c 

Log message:
	2004-10-06  Andrew Pinski  <pinskia@physics.uc.edu>
	
	PR debug/17787
	* dbxout.c (dbxout_symbol): Really handle RECORD, UNION, and
	ENUMs specially instead of just saying we do.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.5769&r2=2.5770
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/dbxout.c.diff?cvsroot=gcc&r1=1.204&r2=1.205



-- 


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


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

* [Bug debug/17787] [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols
  2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2004-10-05 12:36 ` pinskia at gcc dot gnu dot org
@ 2004-10-06 22:13 ` pinskia at gcc dot gnu dot org
  2004-10-06 22:13 ` cvs-commit at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-06 22:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-10-06 22:13 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2004-10-06 22:13 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-01 23:10 [Bug ada/17787] New: [4.0 Regression] Ada does not bootstrap on darwin because of -feliminate-unused-debug-symbols pinskia at gcc dot gnu dot org
2004-10-01 23:10 ` [Bug ada/17787] " pinskia at gcc dot gnu dot org
2004-10-02  0:38 ` [Bug debug/17787] " pinskia at gcc dot gnu dot org
2004-10-02  0:50 ` pinskia at gcc dot gnu dot org
2004-10-02  2:34 ` pinskia at gcc dot gnu dot org
2004-10-02  2:49 ` pinskia at gcc dot gnu dot org
2004-10-05  4:31 ` pinskia at gcc dot gnu dot org
2004-10-05 12:36 ` pinskia at gcc dot gnu dot org
2004-10-06 22:13 ` pinskia at gcc dot gnu dot org
2004-10-06 22:13 ` cvs-commit 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).