* final.c (output_operand_lossage): Constify PFX_STR.
authorGraham Stott <grahams@redhat.com>
Wed, 27 Feb 2002 13:53:50 +0000 (13:53 +0000)
committerGraham Stott <grahams@gcc.gnu.org>
Wed, 27 Feb 2002 13:53:50 +0000 (13:53 +0000)
From-SVN: r50099

gcc/ChangeLog
gcc/final.c

index b1a2483df78c2a5fa18312bea7ae4254868c8fb7..025b4e863042135c46c8abddb16960251033a61a 100644 (file)
@@ -1,5 +1,7 @@
 2002-02-27  Graham Stott  <grahams@redhat.com>
 
+       * final.c (output_operand_lossage): Constify PFX_STR.
+
        * df.c (df_insn_refs_record): Use XEXP (x, 0) for USE.
 
 Wed Feb 27 10:45:19 CET 2002  Jan Hubicka  <jh@suse.cz>
index e8edf19854356d81775c157ed7182c5ac78b9db0..5b9f0f0358a5750088a8c5e945439bf38f386e55 100644 (file)
@@ -2969,7 +2969,7 @@ output_operand_lossage VPARAMS ((const char *msgid, ...))
 {
   char *fmt_string;
   char *new_message;
-  char *pfx_str;
+  const char *pfx_str;
   VA_OPEN (ap, msgid);
   VA_FIXEDARG (ap, const char *, msgid);