From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19323 invoked by alias); 12 Aug 2004 13:04:03 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 19307 invoked from network); 12 Aug 2004 13:04:02 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 12 Aug 2004 13:04:02 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i7CD3qe3001115 for ; Thu, 12 Aug 2004 09:03:52 -0400 Received: from localhost.redhat.com (porkchop.devel.redhat.com [172.16.58.2]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i7CD3pa14322; Thu, 12 Aug 2004 09:03:52 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 378B42B9D; Thu, 12 Aug 2004 09:03:47 -0400 (EDT) Message-ID: <411B6AB3.3080306@gnu.org> Date: Thu, 12 Aug 2004 13:04:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-GB; rv:1.4.1) Gecko/20040801 MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [6.2.1] Update NEWS / PROBLEMS Content-Type: multipart/mixed; boundary="------------010201080708030805040104" X-SW-Source: 2004-08/txt/msg00455.txt.bz2 This is a multi-part message in MIME format. --------------010201080708030805040104 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 69 This updates the NEWS / PROBLEMS files, I'll commit shortly. Andrew --------------010201080708030805040104 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1837 2004-08-12 Andrew Cagney * NEWS: Mention fixes in GDB 6.2.1. * PROBLEMS: Remove mention of mips-irix. Index: NEWS =================================================================== RCS file: /cvs/src/src/gdb/NEWS,v retrieving revision 1.154.2.6 diff -p -u -r1.154.2.6 NEWS --- NEWS 28 Jul 2004 19:51:42 -0000 1.154.2.6 +++ NEWS 12 Aug 2004 12:59:52 -0000 @@ -1,6 +1,25 @@ What has changed in GDB? (Organized release by release) +*** Changes in GDB 6.2.1: + +* MIPS `break main; run' gave an heuristic-fence-post warning + +When attempting to run even a simple program, a warning about +heuristic-fence-post being hit would be reported. This problem has +been fixed. + +* MIPS IRIX 'long double' crashed GDB + +When examining a long double variable, GDB would get a segmentation +fault. The crash has been fixed (but GDB 6.2 cannot correctly examine +IRIX long double values). + +* VAX and "next" + +A bug in the VAX stack code was causing problems with the "next" +command. This problem has been fixed. + *** Changes in GDB 6.2: * Fix for ``many threads'' Index: PROBLEMS =================================================================== RCS file: /cvs/src/src/gdb/PROBLEMS,v retrieving revision 1.31.2.5 diff -p -u -r1.31.2.5 PROBLEMS --- PROBLEMS 29 Jul 2004 22:29:59 -0000 1.31.2.5 +++ PROBLEMS 12 Aug 2004 12:59:52 -0000 @@ -39,12 +39,6 @@ complete, hitting Control-C does not hav The command execution is not aborted, and the "QUIT" message confirming the abortion is displayed only after the command has been completed. -mips-irix broken: - -Due to problems with both BFD (sections not being correctly -recognized) and GDB (backtraces failing), GDB 6.2 does not work on -MIPS IRIX. - *** C++ support gdb/931: GDB could be more generous when reading types C++ templates on input --------------010201080708030805040104--