diff options
author | Michael Hayes <m.hayes@elec.canterbury.ac.nz> | 2000-03-06 20:59:16 +0000 |
---|---|---|
committer | Michael Hayes <m.hayes@gcc.gnu.org> | 2000-03-06 20:59:16 +0000 |
commit | 162193477282b2ffe340203613cae8db64a500a6 (patch) | |
tree | 7534857a4247c77d5936647b8fe31872090687ba /gcc/config | |
parent | 01447dce5bad47a49920b40238636dfa628c4985 (diff) | |
download | gcc-162193477282b2ffe340203613cae8db64a500a6.zip gcc-162193477282b2ffe340203613cae8db64a500a6.tar.gz gcc-162193477282b2ffe340203613cae8db64a500a6.tar.bz2 |
c4x-protos.h (c4x_global_name): Constify char *.
* config/c4x/c4x-protos.h (c4x_global_name): Constify char *.
(c4x_external_ref): Likewise.
* config/c4x/c4x.c (struct name_list): Likewise.
From-SVN: r32370
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/c4x/c4x-protos.h | 4 | ||||
-rw-r--r-- | gcc/config/c4x/c4x.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/c4x/c4x-protos.h b/gcc/config/c4x/c4x-protos.h index 5434039..9a5e70a 100644 --- a/gcc/config/c4x/c4x-protos.h +++ b/gcc/config/c4x/c4x-protos.h @@ -38,9 +38,9 @@ extern int c4x_handle_pragma PARAMS ((int (* p_getc) (void), void (* p_ungetc) (int), char *)); -extern void c4x_global_label (char *); +extern void c4x_global_label (const char *); -extern void c4x_external_ref (char *); +extern void c4x_external_ref (const char *); extern void c4x_file_end (FILE *); diff --git a/gcc/config/c4x/c4x.c b/gcc/config/c4x/c4x.c index 106b334..43a14cb 100644 --- a/gcc/config/c4x/c4x.c +++ b/gcc/config/c4x/c4x.c @@ -4399,7 +4399,7 @@ c4x_handle_pragma (p_getc, p_ungetc, pname) struct name_list { struct name_list *next; - char *name; + const char *name; }; static struct name_list *global_head; |