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 /gcc/reload.c | |
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
Diffstat (limited to 'gcc/reload.c')
-rw-r--r-- | gcc/reload.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |