diff options
author | Ian Lance Taylor <iant@google.com> | 2009-06-23 22:11:22 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2009-06-23 22:11:22 +0000 |
commit | 9a476c9ca3a89ff819022d48b2780ad82bb882f5 (patch) | |
tree | 612014b728c139d247eb45238e8728cd46ec3e2d | |
parent | 26153085b0c5f282afeeaa6131a7d5a30b9755c7 (diff) | |
download | gcc-9a476c9ca3a89ff819022d48b2780ad82bb882f5.zip gcc-9a476c9ca3a89ff819022d48b2780ad82bb882f5.tar.gz gcc-9a476c9ca3a89ff819022d48b2780ad82bb882f5.tar.bz2 |
reload.c (alternative_allows_const_pool_ref): Mark mem parameter with ATTRIBUTE_UNUSED.
* reload.c (alternative_allows_const_pool_ref): Mark mem parameter
with ATTRIBUTE_UNUSED.
From-SVN: r148872
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/reload.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ea2ca53..928edfb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-06-23 Ian Lance Taylor <iant@google.com> + + * reload.c (alternative_allows_const_pool_ref): Mark mem parameter + with ATTRIBUTE_UNUSED. + 2009-06-23 Michael Meissner <meissner@linux.vnet.ibm.com> Pat Haugen <pthaugen@us.ibm.com> Revital1 Eres <ERES@il.ibm.com> diff --git a/gcc/reload.c b/gcc/reload.c index 889a07f..64024a7 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -4560,7 +4560,8 @@ find_reloads (rtx insn, int replace, int ind_levels, int live_known, is null. */ static bool -alternative_allows_const_pool_ref (rtx mem, const char *constraint, int altnum) +alternative_allows_const_pool_ref (rtx mem ATTRIBUTE_UNUSED, + const char *constraint, int altnum) { int c; |