diff options
author | Pedro Alves <palves@redhat.com> | 2014-05-28 21:55:41 +0000 |
---|---|---|
committer | Pedro Alves <palves@gcc.gnu.org> | 2014-05-28 21:55:41 +0000 |
commit | bc2eed9a8e6b0f1cf976ffe626471c5755eb2ca4 (patch) | |
tree | e19defa1e850831a55ee81c911579554676c74c7 /gcc | |
parent | fd9ed1ae2d07d1ba7afb3c103b976eafc64cc034 (diff) | |
download | gcc-bc2eed9a8e6b0f1cf976ffe626471c5755eb2ca4.zip gcc-bc2eed9a8e6b0f1cf976ffe626471c5755eb2ca4.tar.gz gcc-bc2eed9a8e6b0f1cf976ffe626471c5755eb2ca4.tar.bz2 |
Fix demangler testsuite crashes with CP_DEMANGLE_DEBUG defined
Running the demangler's testsuite with CP_DEMANGLE_DEBUG defined
crashes, with:
Program received signal SIGSEGV, Segmentation fault.
0x000000000040a8c3 in d_dump (dc=0x1, indent=12) at ../../src/libiberty/cp-demangle.c:567
567 switch (dc->type)
(gdb) bt 3
#0 0x000000000040a8c3 in d_dump (dc=0x1, indent=12) at ../../src/libiberty/cp-demangle.c:567
#1 0x000000000040ae47 in d_dump (dc=0x7fffffffd098, indent=10) at ../../src/libiberty/cp-demangle.c:787
#2 0x000000000040ae47 in d_dump (dc=0x7fffffffd0c8, indent=8) at ../../src/libiberty/cp-demangle.c:787
Note dc=0x1, which is obviously a bogus pointer. This is the end of
d_dump recursing for a component type that that doesn't actually have
subtrees:
787 d_dump (d_left (dc), indent + 2);
788 d_dump (d_right (dc), indent + 2);
This fixes the two cases the testsuite currently trips on.
libiberty/
2014-05-28 Pedro Alves <palves@redhat.com>
* cp-demangle.c (d_dump): Handle DEMANGLE_COMPONENT_FUNCTION_PARAM
and DEMANGLE_COMPONENT_NUMBER.
From-SVN: r211035
Diffstat (limited to 'gcc')
0 files changed, 0 insertions, 0 deletions