[Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2009-04-04 Thread dfranke at gcc dot gnu dot org
--- Comment #8 from dfranke at gcc dot gnu dot org 2009-04-04 18:12 --- The session from the report now looks like: $ gfortran-svn -g pr24790.f dan...@silence ~/pr $ gdb -q a.out (gdb) break sub_ Breakpoint 1 at 0x804855c: file pr24790.f, line 5. (gdb) break sqr_ Breakpoint 2 at

[Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2008-08-29 Thread jakub at gcc dot gnu dot org
--- Comment #7 from jakub at gcc dot gnu dot org 2008-08-29 18:48 --- Subject: Bug 24790 Author: jakub Date: Fri Aug 29 18:47:19 2008 New Revision: 139777 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=139777 Log: PR fortran/24790 * trans-decl.c

[Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2006-10-22 Thread burnus at net-b dot de
--- Comment #6 from burnus at net-b dot de 2006-10-22 21:03 --- See http://gcc.gnu.org/ml/gcc-patches/2006-10/msg01086.html for a preliminary patch. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24790

[Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2006-01-17 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-01-17 16:48 --- I don't have time for this bug at least right now. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2005-12-05 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-12-06 02:12 --- Some of it can be fixed by using: /* In a RESULT_DECL or PARM_DECL, means that it is passed by invisible reference (and the TREE_TYPE is a pointer to the true type). */ #define DECL_BY_REFERENCE(NODE)

[Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2005-11-14 Thread woodzltc at sources dot redhat dot com
--- Comment #2 from woodzltc at sources dot redhat dot com 2005-11-15 02:26 --- Hi Andrew, (In reply to comment #1) Confirmed, DECL_ARG_TYPE should be the reference type and the DECL_TYPE should be the normal type. This might also fix the implicate bug too (I forgot the

Re: [Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2005-11-14 Thread Andrew Pinski
--- Comment #2 from woodzltc at sources dot redhat dot com 2005-11-15 02:26 --- Hi Andrew, (In reply to comment #1) Confirmed, DECL_ARG_TYPE should be the reference type and the DECL_TYPE should be the normal type. This might also fix the implicate bug too (I

[Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2005-11-14 Thread pinskia at physics dot uc dot edu
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-11-15 03:17 --- Subject: Re: arguments are displayed as reference or pointer to normal type in GDB --- Comment #2 from woodzltc at sources dot redhat dot com 2005-11-15 02:26 --- Hi Andrew, (In reply to

[Bug fortran/24790] arguments are displayed as reference or pointer to normal type in GDB

2005-11-11 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-11-11 15:22 --- Confirmed, DECL_ARG_TYPE should be the reference type and the DECL_TYPE should be the normal type. This might also fix the implicate bug too (I forgot the number). -- pinskia at gcc dot gnu dot org changed: