diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-09-01 05:08:57 +0000 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-08-31 22:08:57 -0700 |
commit | 499b10983a895114ec7729cf6d8dba3ca0a245dc (patch) | |
tree | a91cf8aa401dc3922e6ff8d731dae4e0f402c09f /gcc/alias.c | |
parent | 7c225121a3e28bf5339ad62b28141e61760f4c6b (diff) | |
download | gcc-499b10983a895114ec7729cf6d8dba3ca0a245dc.zip gcc-499b10983a895114ec7729cf6d8dba3ca0a245dc.tar.gz gcc-499b10983a895114ec7729cf6d8dba3ca0a245dc.tar.bz2 |
* alias.c (non_local_reference_p): Constify fmt.
From-SVN: r29023
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index 9de034a..a94793e 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -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--) |