* pa.c (struct deferred_plabel): Constify name field.
authorJohn David Anglin <dave@hiauly1.hia.nrc.ca>
Wed, 7 Aug 2002 22:03:58 +0000 (22:03 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Wed, 7 Aug 2002 22:03:58 +0000 (22:03 +0000)
From-SVN: r56110

gcc/ChangeLog
gcc/config/pa/pa.c

index b1b380f95547dfc4bd7064cf30488ded61f82caa..3bf7245c5a92464b2ca25d79ddb41107020b14d5 100644 (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.
index 7b5e7af178b1f8ac938f2203c49401daff77f614..54ef0b92e2ce3bacd12790e32c3316debe29d5ee 100644 (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;