This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[Bug debug/12869] Bad stabs for bitsize fields
- From: Adriaan van Os <gcc at microbizz dot nl>
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 3 Nov 2003 13:58:53 +0100
- Subject: [Bug debug/12869] Bad stabs for bitsize fields
pinskia at gcc dot gnu dot org wrote:
------- Additional Comments From pinskia at gcc dot gnu dot org
2003-11-02 21:57 -------
Could you update the patch to the mainline and submit it
gcc-patches@gcc.gnu.org with a
changelog?
Here is the patch for mainline (gcc-3.4-20031029)
--- dbxout.c.orig Wed Oct 22 16:28:09 2003
+++ dbxout.c Mon Nov 3 13:44:08 2003
@@ -1448,7 +1448,7 @@
fputs ("@s", asmfile);
CHARS (2);
print_wide_int (BITS_PER_UNIT * int_size_in_bytes (type));
- fputs (";-20;", asmfile);
+ fputs (";-20", asmfile);
CHARS (4);
}
else
@@ -1470,7 +1470,7 @@
fputs ("@s", asmfile);
CHARS (2);
print_wide_int (BITS_PER_UNIT * int_size_in_bytes (type));
- fputs (";-16;", asmfile);
+ fputs (";-16", asmfile);
CHARS (4);
}
else /* Define as enumeral type (False, True) */
Regards,
Adriaan van Os