* parse.c (_initialize_parse): Improve wording of names of
authorJim Kingdon <jkingdon@engr.sgi.com>
Tue, 17 Jan 1995 21:47:38 +0000 (21:47 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Tue, 17 Jan 1995 21:47:38 +0000 (21:47 +0000)
msym_*_symbol_type.

gdb/ChangeLog
gdb/parse.c

index 2b81adc101d0bcf1afe9eb01aa2bfc5fbfe0f4d9..a4f2b78cd9cb810769cf6b8599255fa5e53393c2 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 17 09:48:38 1995  Jim Kingdon  <kingdon@lioth.cygnus.com>
+
+       * parse.c (_initialize_parse): Improve wording of names of
+       msym_*_symbol_type.
+
 Tue Jan 17 14:00:58 1995  Ian Lance Taylor  <ian@sanguine.cygnus.com>
 
        * config/mips/tm-mips.h (enum mips_fpu_type): New enum.
index 620f35d1349d71b180aa34e9bea4257f10527197..4b7d541e0b578b73db9a0becc8367bbc60f09433 100644 (file)
@@ -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);
 }