public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/10036] Wide-character support for Fortran is missing
       [not found] <bug-10036-4717@http.sourceware.org/bugzilla/>
@ 2011-06-28 18:06 ` tromey at redhat dot com
  2011-06-29 15:33 ` cvs-commit at gcc dot gnu.org
  2011-06-29 15:54 ` tromey at redhat dot com
  2 siblings, 0 replies; 5+ messages in thread
From: tromey at redhat dot com @ 2011-06-28 18:06 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=10036

Tom Tromey <tromey at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011.06.28 18:05:36
         AssignedTo|unassigned at sourceware    |tromey at redhat dot com
                   |dot org                     |
     Ever Confirmed|0                           |1

--- Comment #1 from Tom Tromey <tromey at redhat dot com> 2011-06-28 18:05:36 UTC ---
Testing a patch.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug fortran/10036] Wide-character support for Fortran is missing
       [not found] <bug-10036-4717@http.sourceware.org/bugzilla/>
  2011-06-28 18:06 ` [Bug fortran/10036] Wide-character support for Fortran is missing tromey at redhat dot com
@ 2011-06-29 15:33 ` cvs-commit at gcc dot gnu.org
  2011-06-29 15:54 ` tromey at redhat dot com
  2 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2011-06-29 15:33 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=10036

--- Comment #2 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> 2011-06-29 15:32:43 UTC ---
CVSROOT:    /cvs/src
Module name:    src
Changes by:    tromey@sourceware.org    2011-06-29 15:32:40

Modified files:
    gdb            : ChangeLog c-lang.c dwarf2read.c f-lang.c 
                     f-typeprint.c f-valprint.c valprint.c 
                     valprint.h 
    gdb/testsuite  : ChangeLog 
Added files:
    gdb/testsuite/gdb.fortran: charset.exp charset.f90 

Log message:
    gdb
    PR fortran/10036:
    * valprint.h (generic_emit_char, generic_printstr): Declare.
    * valprint.c (wchar_printable, append_string_as_wide)
    (print_wchar): Move from c-lang.c.
    (generic_emit_char): New function; mostly taken from c_emit_char.
    (generic_printstr): New function; mostly taken from c_printstr.
    * f-valprint.c (f_val_print) <TYPE_CODE_ARRAY>: Handle strings
    represented as arrays.
    <TYPE_CODE_CHAR>: Treat as TYPE_CODE_INT; recognize as character
    type.
    * f-typeprint.c (f_type_print_base) <TYPE_CODE_CHAR>: Treat
    identically to TYPE_CODE_INT.
    * f-lang.c (f_get_encoding): New function.
    (f_emit_char): Use generic_emit_char.
    (f_printchar): Replace comment.
    (f_printstr): Use generic_printstr.
    * dwarf2read.c (read_base_type) <DW_ATE_unsigned>: Handle Fortran
    "character" types specially.
    <DW_ATE_signed_char, DW_ATE_unsigned_char>: Make TYPE_CODE_CHAR
    for Fortran.
    * c-lang.c (wchar_printable, append_string_as_wide, print_wchar):
    Move to valprint.c
    (c_emit_char): Call generic_emit_char.
    (c_printstr): Call generic_printstr.
    gdb/testsuite
    * gdb.fortran/charset.exp: New file.
    * gdb.fortran/charset.f90: New file.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.13123&r2=1.13124
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/c-lang.c.diff?cvsroot=src&r1=1.93&r2=1.94
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/dwarf2read.c.diff?cvsroot=src&r1=1.542&r2=1.543
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/f-lang.c.diff?cvsroot=src&r1=1.65&r2=1.66
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/f-typeprint.c.diff?cvsroot=src&r1=1.35&r2=1.36
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/f-valprint.c.diff?cvsroot=src&r1=1.66&r2=1.67
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/valprint.c.diff?cvsroot=src&r1=1.111&r2=1.112
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/valprint.h.diff?cvsroot=src&r1=1.36&r2=1.37
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/ChangeLog.diff?cvsroot=src&r1=1.2757&r2=1.2758
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.fortran/charset.exp.diff?cvsroot=src&r1=NONE&r2=1.1
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.fortran/charset.f90.diff?cvsroot=src&r1=NONE&r2=1.1

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug fortran/10036] Wide-character support for Fortran is missing
       [not found] <bug-10036-4717@http.sourceware.org/bugzilla/>
  2011-06-28 18:06 ` [Bug fortran/10036] Wide-character support for Fortran is missing tromey at redhat dot com
  2011-06-29 15:33 ` cvs-commit at gcc dot gnu.org
@ 2011-06-29 15:54 ` tromey at redhat dot com
  2 siblings, 0 replies; 5+ messages in thread
From: tromey at redhat dot com @ 2011-06-29 15:54 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=10036

Tom Tromey <tromey at redhat dot com> changed:

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

--- Comment #3 from Tom Tromey <tromey at redhat dot com> 2011-06-29 15:54:17 UTC ---
Fix checked in.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug fortran/10036] Wide-character support for Fortran is missing
  2009-04-06 20:18 [Bug fortran/10036] New: " burnus at gmx dot de
  2009-04-06 20:30 ` [Bug fortran/10036] " jan dot kratochvil at redhat dot com
@ 2009-04-06 21:20 ` tromey at redhat dot com
  1 sibling, 0 replies; 5+ messages in thread
From: tromey at redhat dot com @ 2009-04-06 21:20 UTC (permalink / raw)
  To: gdb-prs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tromey at redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=10036

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

* [Bug fortran/10036] Wide-character support for Fortran is missing
  2009-04-06 20:18 [Bug fortran/10036] New: " burnus at gmx dot de
@ 2009-04-06 20:30 ` jan dot kratochvil at redhat dot com
  2009-04-06 21:20 ` tromey at redhat dot com
  1 sibling, 0 replies; 5+ messages in thread
From: jan dot kratochvil at redhat dot com @ 2009-04-06 20:30 UTC (permalink / raw)
  To: gdb-prs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jan dot kratochvil at redhat
                   |                            |dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=10036

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

end of thread, other threads:[~2011-06-29 15:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-10036-4717@http.sourceware.org/bugzilla/>
2011-06-28 18:06 ` [Bug fortran/10036] Wide-character support for Fortran is missing tromey at redhat dot com
2011-06-29 15:33 ` cvs-commit at gcc dot gnu.org
2011-06-29 15:54 ` tromey at redhat dot com
2009-04-06 20:18 [Bug fortran/10036] New: " burnus at gmx dot de
2009-04-06 20:30 ` [Bug fortran/10036] " jan dot kratochvil at redhat dot com
2009-04-06 21:20 ` tromey at redhat dot com

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