This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: 24 GCC regressions, 0 new, with your patch on 2002-06-07T23:31:42Z.
- From: Gabriel Dos Reis <gdr at codesourcery dot com>
- To: "Joseph S. Myers" <jsm28 at cam dot ac dot uk>
- Cc: <gcc at gcc dot gnu dot org>
- Date: 08 Jun 2002 13:24:40 +0200
- Subject: Re: 24 GCC regressions, 0 new, with your patch on 2002-06-07T23:31:42Z.
- Organization: CodeSourcery, LLC
- References: <Pine.LNX.4.33.0206081212360.1442-100000@kern.srcf.societies.cam.ac.uk>
"Joseph S. Myers" <jsm28@cam.ac.uk> writes:
| On 8 Jun 2002, Gabriel Dos Reis wrote:
|
| > 1.s: Assembler messages:
| > 1.s:1: Error: bad or irreducible absolute expression
| > 1.s:1: Warning: missing string
| > 1.s:1: Error: file number less than one
|
| That's clearly a bug according to the GNU Coding Standards (so something
| to be fixed in the assembler, not copied in the compiler).
Fixed with the below.
Thanks,
-- Gaby
2002-06-08 Gabriel Dos Reis <gdr@codesourcery.com>
* diagnostic.def: Don't capitalize diagnostic descriptors.
Index: diagnostic.def
===================================================================
RCS file: /cvs/gcc/egcs/gcc/diagnostic.def,v
retrieving revision 1.1
diff -p -r1.1 diagnostic.def
*** diagnostic.def 1 May 2001 08:19:45 -0000 1.1
--- diagnostic.def 8 Jun 2002 11:23:29 -0000
***************
*** 1,7 ****
! DEFINE_DIAGNOSTIC_KIND (DK_FATAL, "Fatal error: ")
! DEFINE_DIAGNOSTIC_KIND (DK_ICE, "Internal compiler error: ")
! DEFINE_DIAGNOSTIC_KIND (DK_SORRY, "Sorry, unimplemented: ")
! DEFINE_DIAGNOSTIC_KIND (DK_ERROR, "Error: ")
! DEFINE_DIAGNOSTIC_KIND (DK_WARNING, "Warning: ")
! DEFINE_DIAGNOSTIC_KIND (DK_ANACHRONISM, "Anachronism: ")
! DEFINE_DIAGNOSTIC_KIND (DK_NOTE, "Note: ")
--- 1,7 ----
! DEFINE_DIAGNOSTIC_KIND (DK_FATAL, "fatal error: ")
! DEFINE_DIAGNOSTIC_KIND (DK_ICE, "internal compiler error: ")
! DEFINE_DIAGNOSTIC_KIND (DK_SORRY, "sorry, unimplemented: ")
! DEFINE_DIAGNOSTIC_KIND (DK_ERROR, "error: ")
! DEFINE_DIAGNOSTIC_KIND (DK_WARNING, "warning: ")
! DEFINE_DIAGNOSTIC_KIND (DK_ANACHRONISM, "anachronism: ")
! DEFINE_DIAGNOSTIC_KIND (DK_NOTE, "note: ")