public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c/4053: Filenames in debug info for included files are incorrect
@ 2001-11-01 13:42 neil
  0 siblings, 0 replies; 5+ messages in thread
From: neil @ 2001-11-01 13:42 UTC (permalink / raw)
  To: dan, gcc-bugs, gcc-prs, neil, nobody

Synopsis: Filenames in debug info for included files are incorrect

Responsible-Changed-From-To: unassigned->neil
Responsible-Changed-By: neil
Responsible-Changed-When: Mon Nov 12 02:29:01 2001
Responsible-Changed-Why:
    Patch in progress for 3.1.  Too invasive to fix for 3.0.x.
State-Changed-From-To: open->analyzed
State-Changed-By: neil
State-Changed-When: Mon Nov 12 02:29:01 2001
State-Changed-Why:
    Confirmed.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&pr=4053&database=gcc


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

* Re: c/4053: Filenames in debug info for included files are incorrect
@ 2002-04-25 23:25 rth
  0 siblings, 0 replies; 5+ messages in thread
From: rth @ 2002-04-25 23:25 UTC (permalink / raw)
  To: dan, gcc-bugs, gcc-prs, nobody

Synopsis: Filenames in debug info for included files are incorrect

State-Changed-From-To: analyzed->closed
State-Changed-By: rth
State-Changed-When: Thu Apr 25 23:25:32 2002
State-Changed-Why:
    Fixed for gcc 3.1.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=4053


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

* Re: c/4053: Filenames in debug info for included files are incorrect
@ 2001-11-01 13:56 neil
  0 siblings, 0 replies; 5+ messages in thread
From: neil @ 2001-11-01 13:56 UTC (permalink / raw)
  To: dan, gcc-bugs, gcc-prs, neil, nobody

Synopsis: Filenames in debug info for included files are incorrect

Responsible-Changed-From-To: neil->unassigned
Responsible-Changed-By: neil
Responsible-Changed-When: Mon Nov 12 02:50:22 2001
Responsible-Changed-Why:
    Sorry - wrong PR.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&pr=4053&database=gcc


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

* Re: c/4053: Filenames in debug info for included files are incorrect
@ 2001-08-18 14:26 Daniel Jacobowitz
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Jacobowitz @ 2001-08-18 14:26 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c/4053; it has been noted by GNATS.

From: Daniel Jacobowitz <drow@mvista.com>
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: Re: c/4053: Filenames in debug info for included files are incorrect
Date: Sat, 18 Aug 2001 14:19:24 -0700

 On Fri, Aug 17, 2001 at 11:00:02PM -0000, dan@debian.org wrote:
 > 
 > >Number:         4053
 > >Category:       c
 > >Synopsis:       Filenames in debug info for included files are incorrect
 > >Confidential:   no
 > >Severity:       serious
 > >Priority:       medium
 > >Responsible:    unassigned
 > >State:          open
 > >Class:          sw-bug
 > >Submitter-Id:   net
 > >Arrival-Date:   Fri Aug 17 16:06:00 PDT 2001
 > >Closed-Date:
 > >Last-Modified:
 > >Originator:     dan@debian.org
 > >Release:        gcc 3_0 branch
 > >Organization:
 > >Environment:
 > i686-pc-linux-gnu native, or i686-pc-linux-gnu -> mips-unknown-linux-gnu cross.
 > >Description:
 > Take two files, linetest.h:
 > a = b;
 > c = d;
 > e = f;
 > 
 > and linetest.c:
 > int main()
 > {
 >   int a, b, c, d, e, f;
 >   a = b = c = d = e = f = 0;
 >   
 > #include "linetest.h"
 > 
 >   return 0;
 > }
 > 
 > Compile with debugging.  Notice that the filename is never changed - the
 > three lines from the header have debug info indicating they are the first
 > three lines of linetest.c.
 > 
 > This is a regression from 2.95.x, but not from 3.0 release.  It's independent
 > of debug format - the line notes are wrong.  I'd check HEAD, but
 > it segfaults in _cpp_simplify_pathname because "/usr/local/include" is not
 > writeable today.
 
 The same thing happens on the trunk.  And it is not a preprocessor
 problem (directly at least); #line directives are correct.
 
 -- 
 Daniel Jacobowitz                           Carnegie Mellon University
 MontaVista Software                         Debian GNU/Linux Developer


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

* c/4053: Filenames in debug info for included files are incorrect
@ 2001-08-17 16:06 dan
  0 siblings, 0 replies; 5+ messages in thread
From: dan @ 2001-08-17 16:06 UTC (permalink / raw)
  To: gcc-gnats

>Number:         4053
>Category:       c
>Synopsis:       Filenames in debug info for included files are incorrect
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Fri Aug 17 16:06:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     dan@debian.org
>Release:        gcc 3_0 branch
>Organization:
>Environment:
i686-pc-linux-gnu native, or i686-pc-linux-gnu -> mips-unknown-linux-gnu cross.
>Description:
Take two files, linetest.h:
a = b;
c = d;
e = f;

and linetest.c:
int main()
{
  int a, b, c, d, e, f;
  a = b = c = d = e = f = 0;
  
#include "linetest.h"

  return 0;
}

Compile with debugging.  Notice that the filename is never changed - the
three lines from the header have debug info indicating they are the first
three lines of linetest.c.

This is a regression from 2.95.x, but not from 3.0 release.  It's independent
of debug format - the line notes are wrong.  I'd check HEAD, but
it segfaults in _cpp_simplify_pathname because "/usr/local/include" is not
writeable today.
>How-To-Repeat:

>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


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

end of thread, other threads:[~2002-04-26  6:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-11-01 13:42 c/4053: Filenames in debug info for included files are incorrect neil
  -- strict thread matches above, loose matches on Subject: below --
2002-04-25 23:25 rth
2001-11-01 13:56 neil
2001-08-18 14:26 Daniel Jacobowitz
2001-08-17 16:06 dan

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).