forked from Imagelibrary/binutils-gdb
Fix some comments in varobj.{c,h}
A few typos. The comment about varobj_create has been misplaced since the dawn of time. gdb/ChangeLog: * varobj.h (struct varobj): Fix typos in comments. (struct lang_varobj_ops): Likewise. * varobj.c (VAROBJ_TABLE_SIZE): Likewise. (varobj_create): Move misplaced comment.
This commit is contained in:
@@ -220,7 +220,7 @@ static int format_code[] = { 0, 't', 'd', 'x', 'o', 'z' };
|
||||
static struct varobj_root *rootlist;
|
||||
|
||||
/* Prime number indicating the number of buckets in the hash table. */
|
||||
/* A prime large enough to avoid too many colisions. */
|
||||
/* A prime large enough to avoid too many collisions. */
|
||||
#define VAROBJ_TABLE_SIZE 227
|
||||
|
||||
/* Pointer to the varobj hash table (built at run time). */
|
||||
@@ -246,8 +246,6 @@ varobj_ensure_python_env (const struct varobj *var)
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Creates a varobj (not its children). */
|
||||
|
||||
/* Return the full FRAME which corresponds to the given CORE_ADDR
|
||||
or NULL if no FRAME on the chain corresponds to CORE_ADDR. */
|
||||
|
||||
@@ -280,6 +278,8 @@ find_frame_addr_in_frame_chain (CORE_ADDR frame_addr)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Creates a varobj (not its children). */
|
||||
|
||||
struct varobj *
|
||||
varobj_create (char *objname,
|
||||
char *expression, CORE_ADDR frame, enum varobj_type type)
|
||||
|
||||
Reference in New Issue
Block a user