From: John David Anglin Date: Wed, 7 Aug 2002 22:03:58 +0000 (+0000) Subject: * pa.c (struct deferred_plabel): Constify name field. X-Git-Tag: releases/gcc-3.3.0~3393 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=043d39a683dfc5cddfe7042548cb39e3578365b2;p=thirdparty%2Fgcc.git * pa.c (struct deferred_plabel): Constify name field. From-SVN: r56110 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b1b380f95547..3bf7245c5a92 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-08-07 John David Anglin + + * pa.c (struct deferred_plabel): Constify name field. + 2002-08-07 Neil Booth * cppmacro.c (_cpp_builtin_macro_text): Remove unused variable. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 7b5e7af178b1..54ef0b92e2ce 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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;