diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1995-01-17 21:47:38 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1995-01-17 21:47:38 +0000 |
commit | eedb3363e8cbb6a6845cf93850f116f6b6cf9ede (patch) | |
tree | fbab3148019eca26fa056f7315f7d9c42c1c74de /gdb/parse.c | |
parent | d01a0278a0a00fb99c2d2a443025ab3fea4cd111 (diff) | |
download | gdb-eedb3363e8cbb6a6845cf93850f116f6b6cf9ede.zip gdb-eedb3363e8cbb6a6845cf93850f116f6b6cf9ede.tar.gz gdb-eedb3363e8cbb6a6845cf93850f116f6b6cf9ede.tar.bz2 |
* parse.c (_initialize_parse): Improve wording of names of
msym_*_symbol_type.
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index 620f35d..4b7d541 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -912,12 +912,13 @@ _initialize_parse () xmalloc (type_stack_size * sizeof (*type_stack)); msym_text_symbol_type = - init_type (TYPE_CODE_FUNC, 1, 0, "<text variable without -g>", NULL); + init_type (TYPE_CODE_FUNC, 1, 0, "<text variable, no debug info>", NULL); TYPE_TARGET_TYPE (msym_text_symbol_type) = builtin_type_int; msym_data_symbol_type = init_type (TYPE_CODE_INT, TARGET_INT_BIT / HOST_CHAR_BIT, 0, - "<data variable without -g>", NULL); + "<data variable, no debug info>", NULL); msym_unknown_symbol_type = - init_type (TYPE_CODE_INT, 1, 0, "<unknown segment variable without -g>", + init_type (TYPE_CODE_INT, 1, 0, + "<variable (not text or data), no debug info>", NULL); } |