aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJie Zhang <jie.zhang@analog.com>2010-01-17 10:19:22 +0000
committerJie Zhang <jiez@gcc.gnu.org>2010-01-17 10:19:22 +0000
commita90110c3df1c1408e0a68d22a71b705a78680f6d (patch)
tree812b8c4586dace657567c5fb483ad563bdda378c
parent5eb7ce918115a8c994124a5d02f4e8b6392075fe (diff)
downloadgcc-a90110c3df1c1408e0a68d22a71b705a78680f6d.zip
gcc-a90110c3df1c1408e0a68d22a71b705a78680f6d.tar.gz
gcc-a90110c3df1c1408e0a68d22a71b705a78680f6d.tar.bz2
re PR debug/42767 (ICE in mem_loc_descriptor)
PR debug/42767 * dwarf2out.c (mem_loc_descriptor): Handle SS_TRUNCATE and US_TRUNCATE. testsuite/ PR debug/42767 * gcc.dg/debug/pr42767.c: New. From-SVN: r155974
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/dwarf2out.c4
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/debug/pr42767.c18
4 files changed, 32 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5a313c0..6a24e59 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2010-01-17 Jie Zhang <jie.zhang@analog.com>
+
+ PR debug/42767
+ * dwarf2out.c (mem_loc_descriptor): Handle SS_TRUNCATE
+ and US_TRUNCATE.
+
2010-01-17 Joern Rennecke <amylaar@spamcop.net>
* doc/tm.texi (TARGET_INIT_LIBFUNCS): Put @findex entries in order of
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 02c0afd..11a4960 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -1,6 +1,6 @@
/* Output Dwarf2 format symbol table information from GCC.
Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
- 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+ 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
Contributed by Gary Funck (gary@intrepid.com).
Derived from DWARF 1 implementation of Ron Guilmette (rfg@monkeys.com).
Extensively modified by Jason Merrill (jason@cygnus.com).
@@ -13438,6 +13438,8 @@ mem_loc_descriptor (rtx rtl, enum machine_mode mode,
/* In theory, we could implement the above. */
/* DWARF cannot represent the unsigned compare operations
natively. */
+ case SS_TRUNCATE:
+ case US_TRUNCATE:
case SS_MULT:
case US_MULT:
case SS_DIV:
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8c45d48..1302d42 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2010-01-17 Jie Zhang <jie.zhang@analog.com>
+
+ PR debug/42767
+ * gcc.dg/debug/pr42767.c: New.
+
2010-01-15 Jason Merrill <jason@redhat.com>
PR c++/42761
diff --git a/gcc/testsuite/gcc.dg/debug/pr42767.c b/gcc/testsuite/gcc.dg/debug/pr42767.c
new file mode 100644
index 0000000..1f0e25f
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/debug/pr42767.c
@@ -0,0 +1,18 @@
+/* PR debug/42767 */
+/* { dg-do compile } */
+/* { dg-options "-O1 -g" } */
+
+struct lineno_cache_entry
+{
+ unsigned long size;
+};
+_bfd_link_section_stabs (struct lineno_cache_entry * stabsec)
+{
+ unsigned long count;
+ unsigned char *sym;
+ unsigned char *symend;
+ unsigned long skip;
+ count = stabsec->size / 12;
+ for (; sym < symend; sym += 1);
+ stabsec->size = (count - skip) * 12;
+}