From: Jonathan Wakely Date: Thu, 16 Mar 2017 14:11:48 +0000 (+0000) Subject: PR libstdc++/67440 make pretty printers work with GDB 7.6 again X-Git-Tag: upstream/12.2.0~40668 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7acc5349773cfe101d6ed116be30e15eb71b0d0f;p=platform%2Fupstream%2Fgcc.git PR libstdc++/67440 make pretty printers work with GDB 7.6 again PR libstdc++/67440 * python/libstdcxx/v6/printers.py (find_type): Avoid gdb.Type.name for GDB 7.6 compatibility, use gdb.Type.unqualified instead. From-SVN: r246196 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8ba7efa..58b2522 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2017-03-16 Jonathan Wakely + + PR libstdc++/67440 + * python/libstdcxx/v6/printers.py (find_type): Avoid gdb.Type.name + for GDB 7.6 compatibility, use gdb.Type.unqualified instead. + 2017-03-15 Ville Voutilainen Implement LWG 2857, {variant,optional,any}::emplace should diff --git a/libstdc++-v3/python/libstdcxx/v6/printers.py b/libstdc++-v3/python/libstdcxx/v6/printers.py index 36dd81d..14025dd 100644 --- a/libstdc++-v3/python/libstdcxx/v6/printers.py +++ b/libstdc++-v3/python/libstdcxx/v6/printers.py @@ -85,9 +85,8 @@ except ImportError: def find_type(orig, name): typ = orig.strip_typedefs() while True: - # Use typ.name here instead of str(typ) to discard any const,etc. - # qualifiers. PR 67440. - search = typ.name + '::' + name + # Strip cv-qualifiers. PR 67440. + search = '%s::%s' % (typ.unqualified(), name) try: return gdb.lookup_type(search) except RuntimeError: