Your message dated Sun, 20 Nov 2005 11:32:10 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#261330: fixed in gdb 6.3.90.20051119-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 25 Jul 2004 09:15:51 +0000
>From [EMAIL PROTECTED] Sun Jul 25 02:15:51 2004
Return-path: <[EMAIL PROTECTED]>
Received: from mail.cs.tu-berlin.de [130.149.17.13] (root)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Bof6l-0003OR-00; Sun, 25 Jul 2004 02:15:51 -0700
Received: from bolero.cs.tu-berlin.de ([EMAIL PROTECTED] [130.149.19.1])
        by mail.cs.tu-berlin.de (8.9.3p2/8.9.3) with ESMTP id LAA13904
        for <[EMAIL PROTECTED]>; Sun, 25 Jul 2004 11:15:49 +0200 (MEST)
Received: (from [EMAIL PROTECTED])
        by bolero.cs.tu-berlin.de (8.12.10+Sun/8.12.8/Submit) id i6P9FnWM021914;
        Sun, 25 Jul 2004 11:15:49 +0200 (MEST)
From: Matthias Klose <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <[EMAIL PROTECTED]>
Date: Sun, 25 Jul 2004 11:15:49 +0200
To: [EMAIL PROTECTED]
Subject: please add support for Dwarf-2 Pascal debug info
X-Mailer: VM 7.03 under 21.4 (patch 6) "Common Lisp" XEmacs Lucid
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: gdb

see http://www.math.uni.wroc.pl/~hebisch/gpc/


--- gdb-6.1/gdb/dwarf2read.c.orig       2004-03-16 23:46:05.000000000 +0100
+++ gdb-6.1/gdb/dwarf2read.c    2004-05-06 20:45:07.000000000 +0200
@@ -815,6 +815,8 @@
 
 static void read_enumeration_type (struct die_info *, struct dwarf2_cu *);
 
+static void read_set_type (struct die_info *, struct dwarf2_cu *);
+
 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
 
 static struct type *dwarf_base_type (int, int, struct dwarf2_cu *);
@@ -3307,6 +3309,24 @@
   return new_prefix;
 }
 
+
+static void 
+read_set_type (struct die_info * die, struct dwarf2_cu *cu)
+{
+  struct type *domain_type;
+
+  /* Return if we've already decoded this type. */
+  if (die->type)
+    {
+      return;
+    }
+
+  domain_type = die_type (die, cu);
+
+  die->type = create_set_type (NULL, domain_type);
+
+}
+
 /* Given a pointer to a die which begins an enumeration, process all
    the dies that define the members of the enumeration, and create the
    symbol for the enumeration type.
@@ -4997,11 +5017,13 @@
     case DW_LANG_Java:
       cu->language = language_java;
       break;
+    case DW_LANG_Pascal83:
+      cu->language = language_pascal;
+      break;
     case DW_LANG_Ada83:
     case DW_LANG_Ada95:
     case DW_LANG_Cobol74:
     case DW_LANG_Cobol85:
-    case DW_LANG_Pascal83:
     case DW_LANG_Modula2:
     default:
       cu->language = language_minimal;
@@ -5708,6 +5730,7 @@
        case DW_TAG_structure_type:
        case DW_TAG_union_type:
        case DW_TAG_enumeration_type:
+        case DW_TAG_set_type:
          SYMBOL_CLASS (sym) = LOC_TYPEDEF;
          SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
 
@@ -6061,6 +6084,9 @@
     case DW_TAG_enumeration_type:
       read_enumeration_type (die, cu);
       break;
+    case DW_TAG_set_type:
+      read_set_type (die, cu);
+      break;
     case DW_TAG_subprogram:
     case DW_TAG_subroutine_type:
       read_subroutine_type (die, cu);

---------------------------------------
Received: (at 261330-close) by bugs.debian.org; 20 Nov 2005 19:41:31 +0000
>From [EMAIL PROTECTED] Sun Nov 20 11:41:31 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
        id 1Eduv4-0002rG-II; Sun, 20 Nov 2005 11:32:10 -0800
From: Daniel Jacobowitz <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#261330: fixed in gdb 6.3.90.20051119-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 20 Nov 2005 11:32:10 -0800
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 8

Source: gdb
Source-Version: 6.3.90.20051119-1

We believe that the bug you reported is fixed in the latest version of
gdb, which is due to be installed in the Debian FTP archive:

gdb_6.3.90.20051119-1.diff.gz
  to pool/main/g/gdb/gdb_6.3.90.20051119-1.diff.gz
gdb_6.3.90.20051119-1.dsc
  to pool/main/g/gdb/gdb_6.3.90.20051119-1.dsc
gdb_6.3.90.20051119-1_i386.deb
  to pool/main/g/gdb/gdb_6.3.90.20051119-1_i386.deb
gdb_6.3.90.20051119.orig.tar.gz
  to pool/main/g/gdb/gdb_6.3.90.20051119.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Daniel Jacobowitz <[EMAIL PROTECTED]> (supplier of updated gdb package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sun, 20 Nov 2005 13:40:44 -0500
Source: gdb
Binary: gdb
Architecture: source i386
Version: 6.3.90.20051119-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Jacobowitz <[EMAIL PROTECTED]>
Changed-By: Daniel Jacobowitz <[EMAIL PROTECTED]>
Description: 
 gdb        - The GNU Debugger
Closes: 261330 293637 298088 306267 309538 317317 320391 323217 326358 328580 
332184
Changes: 
 gdb (6.3.90.20051119-1) unstable; urgency=low
 .
   * New upstream snapshot (6.4 branch prerelease).
     - Many Debian patches merged.
     - Selected frame and C++ pass-by-reference patches updated.
     - Fixes segfault when executing malformed TUI window commands
       (Closes: #317317).
     - Behaves more gracefully when the executable disappears, et cetera
       (Closes: #293637, #323217, #332184).
     - Handle vfork from threaded programs using NPTL (Closes: #320391).
   * Do not rebuild bfd.info.
   * Build depend on a version of debhelper which will put menu fils
     in /usr/share.
   * Don't build depend on gcj on the Hurd (Closes: #298088).
   * Prevent unnecessary SIGTTOU when resolving pending breakpoints
     (Closes: #306267).
   * Enable the testsuite on amd64.
   * Use libreadline5 instead of libreadline4 (Closes: #309538, #326358).
   * Install gdb_gcore.sh as gcore (Closes: #328580).
   * Add GPC support (Closes: #261330).
Files: 
 85efb361d8a541dc8b97de99328d36ba 1328 devel standard gdb_6.3.90.20051119-1.dsc
 45eb316dbe9707a7d3d9a6876810cfc5 19098755 devel standard 
gdb_6.3.90.20051119.orig.tar.gz
 22209abda56bd21458667345b87e388e 39594 devel standard 
gdb_6.3.90.20051119-1.diff.gz
 ac0dd81e033ae31ae474dbb013187594 2755846 devel standard 
gdb_6.3.90.20051119-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDgMr8bgOPXuCjg3cRAlDQAJ9zZpAPVvXIaz2yBeEGoNSMbSwMzACeM9Wh
f2itNxL8eNKs5iLT58y28qE=
=L9L2
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to