X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fc-varobj.c;h=bec1b65c2b0ed0560c9f155091aabe9c8bf9e921;hb=456e800a63def18484f69a51f59c2338a5cc4568;hp=21db8cdde980d5d529c1d19312d8a28a00977e64;hpb=230d2906b9d1d009b22fd526181bf43e1084ed59;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/c-varobj.c b/gdb/c-varobj.c index 21db8cdde9..bec1b65c2b 100644 --- a/gdb/c-varobj.c +++ b/gdb/c-varobj.c @@ -1,6 +1,6 @@ /* varobj support for C and C++. - Copyright (C) 1999-2019 Free Software Foundation, Inc. + Copyright (C) 1999-2020 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ static void cplus_class_num_children (struct type *type, int children[3]); #define ANONYMOUS_UNION_NAME _("") /* Does CHILD represent a child with no name? This happens when - the child is an anonmous struct or union and it has no field name + the child is an anonymous struct or union and it has no field name in its parent variable. This has already been determined by *_describe_child. The easiest @@ -82,7 +82,7 @@ adjust_value_for_child_access (struct value **value, /* Pointers to structures are treated just like structures when accessing children. Don't - dererences pointers to other types. */ + dereference pointers to other types. */ if (TYPE_CODE (*type) == TYPE_CODE_PTR) { struct type *target_type = get_target_type (*type); @@ -765,7 +765,7 @@ cplus_describe_child (const struct varobj *parent, int index, --type_index; /* If the type is anonymous and the field has no name, - set an appopriate name. */ + set an appropriate name. */ field_name = TYPE_FIELD_NAME (type, type_index); if (field_name == NULL || *field_name == '\0') {