* pa.c (struct deferred_plabel): Constify name field.

From-SVN: r56110
This commit is contained in:
John David Anglin 2002-08-07 22:03:58 +00:00 committed by John David Anglin
parent 34bb92e3f0
commit 043d39a683
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-08-07 John David Anglin <dave@hiauly1.hia.nrc.ca>
* pa.c (struct deferred_plabel): Constify name field.
2002-08-07 Neil Booth <neil@daikokuya.co.uk>
* cppmacro.c (_cpp_builtin_macro_text): Remove unused variable.

View File

@ -152,7 +152,7 @@ unsigned int total_code_bytes;
struct deferred_plabel GTY(())
{
rtx internal_label;
char *name;
const char *name;
};
static GTY((length ("n_deferred_plabels"))) struct deferred_plabel *
deferred_plabels;