diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-23 22:11:22 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-23 22:11:22 +0000 |
commit | 6577bf6b5905998f113f66eafdaca1d1dd3a197b (patch) | |
tree | 612014b728c139d247eb45238e8728cd46ec3e2d /gcc/reload.c | |
parent | 3abb07659308824821d2e6ae3abe3cd222d4f6c9 (diff) | |
download | gcc-6577bf6b5905998f113f66eafdaca1d1dd3a197b.tar.gz |
* reload.c (alternative_allows_const_pool_ref): Mark mem parameter
with ATTRIBUTE_UNUSED.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148872 138bc75d-0d04-0410-961f-82ee72b054a4
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 889a07f1369..64024a781b8 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; |