Constify 'la_name' in struct language_defn

Hi,
When I add another name of language, I find field 'la_name' can be
'const char *'.  This patch is to constify it.

gdb:

2013-11-07  Yao Qi  <yao@codesourcery.com>

	* language.c (language_str): Return const char *.
	(add_language): Add const to 'language_names'
	* language.h (struct language_defn) <la_name>: Add const.
	(language_str: Update declaration.
This commit is contained in:
Yao Qi
2013-10-26 15:37:15 +08:00
parent 01e48c0ce1
commit 27cd387b7c
3 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2013-11-07 Yao Qi <yao@codesourcery.com>
* language.c (language_str): Return const char *.
(add_language): Add const to 'language_names'
* language.h (struct language_defn) <la_name>: Add const.
(language_str: Update declaration.
2013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
* s390-linux-nat.c (s390_read_description): Consider the TE field

View File

@ -485,7 +485,7 @@ language_def (enum language lang)
}
/* Return the language as a string. */
char *
const char *
language_str (enum language lang)
{
int i;
@ -520,7 +520,7 @@ void
add_language (const struct language_defn *lang)
{
/* For the "set language" command. */
static char **language_names = NULL;
static const char **language_names = NULL;
/* For the "help set language" command. */
char *language_set_doc = NULL;

View File

@ -132,7 +132,7 @@ struct language_defn
{
/* Name of the language. */
char *la_name;
const char *la_name;
/* its symtab language-enum (defs.h). */
@ -488,7 +488,7 @@ extern enum language language_enum (char *str);
extern const struct language_defn *language_def (enum language);
extern char *language_str (enum language);
extern const char *language_str (enum language);
/* Add a language to the set known by GDB (at initialization time). */