mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
Modified Files:
cp-valprint.c Log Messages: * cp-valprint.c: change vtble field name to __vtbl (pr2695)
This commit is contained in:
parent
2d575e6fed
commit
b0dd16a5d4
@ -167,8 +167,12 @@ cp_is_vtbl_ptr_type(type)
|
||||
struct type *type;
|
||||
{
|
||||
char *typename = type_name_no_tag (type);
|
||||
/* WAS this and from 4.10, it changed to __vtbl_ptr_type **
|
||||
static const char vtbl_ptr_name[] =
|
||||
{ CPLUS_MARKER,'v','t','b','l','_','p','t','r','_','t','y','p','e', 0 };
|
||||
*/
|
||||
static const char vtbl_ptr_name[] =
|
||||
{ '_','_','v','t','b','l','_','p','t','r','_','t','y','p','e', 0 };
|
||||
|
||||
return (typename != NULL && STREQ(typename, vtbl_ptr_name));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user