tree.h (lang_identify): Constify a char*.
* tree.h (lang_identify): Constify a char*. (print_error_function): Add extern prototype. Constify a char*. * c-lang.c (lang_identify): Constify a char*. * objc/objc-act.c (lang_identify): Constify a char*. From-SVN: r28631
This commit is contained in:
parent
63ac1f08b7
commit
c95910595c
4 changed files with 16 additions and 3 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
Mon Aug 9 19:36:00 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
|
* tree.h (lang_identify): Constify a char*.
|
||||||
|
(print_error_function): Add extern prototype. Constify a char*.
|
||||||
|
|
||||||
|
* c-lang.c (lang_identify): Constify a char*.
|
||||||
|
|
||||||
|
* objc/objc-act.c (lang_identify): Constify a char*.
|
||||||
|
|
||||||
Mon Aug 9 16:21:53 1999 Bernd Schmidt <bernds@cygnus.co.uk>
|
Mon Aug 9 16:21:53 1999 Bernd Schmidt <bernds@cygnus.co.uk>
|
||||||
|
|
||||||
* genpeep.c (main): Make generated file include "function.h".
|
* genpeep.c (main): Make generated file include "function.h".
|
||||||
|
|
|
@ -75,7 +75,7 @@ lang_finish ()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
const char *
|
||||||
lang_identify ()
|
lang_identify ()
|
||||||
{
|
{
|
||||||
return "c";
|
return "c";
|
||||||
|
|
|
@ -682,7 +682,7 @@ lang_finish ()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
const char *
|
||||||
lang_identify ()
|
lang_identify ()
|
||||||
{
|
{
|
||||||
return "objc";
|
return "objc";
|
||||||
|
|
|
@ -2077,7 +2077,11 @@ extern void lang_init PROTO((void));
|
||||||
extern void lang_finish PROTO((void));
|
extern void lang_finish PROTO((void));
|
||||||
|
|
||||||
/* Function to identify which front-end produced the output file. */
|
/* Function to identify which front-end produced the output file. */
|
||||||
extern char *lang_identify PROTO((void));
|
extern const char *lang_identify PROTO((void));
|
||||||
|
|
||||||
|
/* Called by report_error_function to print out function name.
|
||||||
|
* Default may be overridden by language front-ends. */
|
||||||
|
extern void (*print_error_function) PROTO((const char *));
|
||||||
|
|
||||||
/* Function to replace the DECL_LANG_SPECIFIC field of a DECL with a copy. */
|
/* Function to replace the DECL_LANG_SPECIFIC field of a DECL with a copy. */
|
||||||
extern void copy_lang_decl PROTO((tree));
|
extern void copy_lang_decl PROTO((tree));
|
||||||
|
|
Loading…
Add table
Reference in a new issue