public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/33528]  New: Wrong locations emitted with mapped locations and included files
@ 2007-09-22 12:17 fxcoudert at gcc dot gnu dot org
  2007-09-22 14:01 ` [Bug fortran/33528] " fxcoudert at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-09-22 12:17 UTC (permalink / raw)
  To: gcc-bugs

While testing my patch for PR33502, I discovered that the Fortran front-end
emits wrong location when configured with --enable-mapped-location: the line
numbers are OK, but the file name is wrong for the the outer file locations
after the inclusion. 

The following is the behaviour with an --enable-mapped-location compiler;
notice that we believe to be at line 3 in inc1.f90, while we're in foo.F90 (and
this triggers the "Line number 3 out of range; inc1.f90 has 1 lines" message).

$ cat foo.F90 
  print *, 11
#include "inc1.f90"
  print *, 13
  end
$ cat inc1.f90 
  print *, 12
$ gfortran -g foo.F90
$ gdb -quiet ./a.out
Using host libthread_db library "/lib/libthread_db.so.1".
(gdb) b MAIN__
Breakpoint 1 at 0x401ea7: file foo.F90, line 1.
(gdb) r
Starting program: /home/fxcoudert/devel/debug/irun/a.out 

Breakpoint 1, MAIN__ () at foo.F90:1
1         print *, 11
Current language:  auto; currently fortran
(gdb) n
          11
1         print *, 12
(gdb) where
#0  MAIN__ () at inc1.f90:1
(gdb) n
          12
Line number 3 out of range; inc1.f90 has 1 lines.
(gdb) where
#0  MAIN__ () at inc1.f90:3


-- 
           Summary: Wrong locations emitted with mapped locations and
                    included files
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: wrong-debug
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: fxcoudert at gcc dot gnu dot org


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


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

* [Bug fortran/33528] Wrong locations emitted with mapped locations and included files
  2007-09-22 12:17 [Bug fortran/33528] New: Wrong locations emitted with mapped locations and included files fxcoudert at gcc dot gnu dot org
@ 2007-09-22 14:01 ` fxcoudert at gcc dot gnu dot org
  2007-09-22 16:59 ` fxcoudert at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-09-22 14:01 UTC (permalink / raw)
  To: gcc-bugs



-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-09-22 14:01:09
               date|                            |


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


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

* [Bug fortran/33528] Wrong locations emitted with mapped locations and included files
  2007-09-22 12:17 [Bug fortran/33528] New: Wrong locations emitted with mapped locations and included files fxcoudert at gcc dot gnu dot org
  2007-09-22 14:01 ` [Bug fortran/33528] " fxcoudert at gcc dot gnu dot org
@ 2007-09-22 16:59 ` fxcoudert at gcc dot gnu dot org
  2007-09-22 23:48 ` fxcoudert at gcc dot gnu dot org
  2007-09-22 23:49 ` fxcoudert at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-09-22 16:59 UTC (permalink / raw)
  To: gcc-bugs



-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |fxcoudert at gcc dot gnu dot
                   |dot org                     |org
                URL|                            |http://gcc.gnu.org/ml/gcc-
                   |                            |patches/2007-
                   |                            |09/msg01733.html
             Status|NEW                         |ASSIGNED
           Keywords|                            |patch
   Last reconfirmed|2007-09-22 14:01:09         |2007-09-22 16:59:39
               date|                            |


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


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

* [Bug fortran/33528] Wrong locations emitted with mapped locations and included files
  2007-09-22 12:17 [Bug fortran/33528] New: Wrong locations emitted with mapped locations and included files fxcoudert at gcc dot gnu dot org
  2007-09-22 14:01 ` [Bug fortran/33528] " fxcoudert at gcc dot gnu dot org
  2007-09-22 16:59 ` fxcoudert at gcc dot gnu dot org
@ 2007-09-22 23:48 ` fxcoudert at gcc dot gnu dot org
  2007-09-22 23:49 ` fxcoudert at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-09-22 23:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from fxcoudert at gcc dot gnu dot org  2007-09-22 23:48 -------
Subject: Bug 33528

Author: fxcoudert
Date: Sat Sep 22 23:48:02 2007
New Revision: 128676

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=128676
Log:
        PR fortran/33528
        * scanner.c (preprocessor_line): Call linemap_add when exiting
        a file.
        (gfc_new_file): Adjust debug code for USE_MAPPED_LOCATION.

Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/scanner.c


-- 


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


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

* [Bug fortran/33528] Wrong locations emitted with mapped locations and included files
  2007-09-22 12:17 [Bug fortran/33528] New: Wrong locations emitted with mapped locations and included files fxcoudert at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2007-09-22 23:48 ` fxcoudert at gcc dot gnu dot org
@ 2007-09-22 23:49 ` fxcoudert at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-09-22 23:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from fxcoudert at gcc dot gnu dot org  2007-09-22 23:48 -------
Fixed.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.3.0


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


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

end of thread, other threads:[~2007-09-22 23:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-22 12:17 [Bug fortran/33528] New: Wrong locations emitted with mapped locations and included files fxcoudert at gcc dot gnu dot org
2007-09-22 14:01 ` [Bug fortran/33528] " fxcoudert at gcc dot gnu dot org
2007-09-22 16:59 ` fxcoudert at gcc dot gnu dot org
2007-09-22 23:48 ` fxcoudert at gcc dot gnu dot org
2007-09-22 23:49 ` fxcoudert 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).