java-tree.h (cyclic_inheritance_report): Constify.

* java-tree.h (cyclic_inheritance_report): Constify.
	* parse.y (cyclic_inheritance_report): Likewise.

From-SVN: r37564
This commit is contained in:
Kaveh R. Ghazi 2000-11-19 12:56:21 +00:00 committed by Kaveh Ghazi
parent 8bcc782ce9
commit 7e9355c669
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* java-tree.h (cyclic_inheritance_report): Constify.
* parse.y (cyclic_inheritance_report): Likewise.
2000-11-17 Zack Weinberg <zack@wolery.stanford.edu>
* parse.y (goal): Remove call to ggc_add_string_root.

View File

@ -604,7 +604,7 @@ extern struct CPool *outgoing_cpool;
#define wfl_operator \
java_global_trees[JTI_WFL_OPERATOR]
extern char *cyclic_inheritance_report;
extern const char *cyclic_inheritance_report;
struct lang_identifier
{

View File

@ -334,7 +334,7 @@ int java_warning_count;
/* Tell when not to fold, when doing xrefs */
int do_not_fold;
/* Cyclic inheritance report, as it can be set by layout_class */
char *cyclic_inheritance_report;
const char *cyclic_inheritance_report;
/* Tell when we're within an instance initializer */
static int in_instance_initializer;