OSDN Git Service

* alias.c (non_local_reference_p): Constify fmt.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Sep 1999 05:08:57 +0000 (05:08 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Sep 1999 05:08:57 +0000 (05:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29023 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/alias.c

index f25438c..432d80a 100644 (file)
@@ -1,3 +1,7 @@
+Tue Aug 31 22:08:03 1999  Marc Espie <espie@cvs.openbsd.org>
+
+       * alias.c (non_local_reference_p): Constify fmt.
+
 Tue Aug 31 23:19:35 1999  Michael Meissner  <meissner@cygnus.com>
 
        * config/i386/xm-cygwin.h (HAVE_DOS_BASED_FILE_SYSTEM): Define.
index 9de034a..a94793e 100644 (file)
@@ -1431,7 +1431,7 @@ nonlocal_reference_p (x)
   /* Recursively scan the operands of this expression.  */
 
   {
-    register char *fmt = GET_RTX_FORMAT (code);
+    register const char *fmt = GET_RTX_FORMAT (code);
     register int i;
     
     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)