diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2011-01-23 14:27:33 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2011-01-23 14:27:33 +0000 |
commit | 7fcaf152b608e3afc138f83fc06d230c4d83fa90 (patch) | |
tree | e0fd0493a516c14f90a1fbe2bdb1798789062686 /gcc/compare-elim.c | |
parent | aeb4e803dcbace03e94dca97764203c263e9aa38 (diff) | |
download | gcc-7fcaf152b608e3afc138f83fc06d230c4d83fa90.zip gcc-7fcaf152b608e3afc138f83fc06d230c4d83fa90.tar.gz gcc-7fcaf152b608e3afc138f83fc06d230c4d83fa90.tar.bz2 |
compare-elim.c (maybe_select_cc_mode): Add ATTRIBUTE_UNUSED markers.
* compare-elim.c (maybe_select_cc_mode): Add ATTRIBUTE_UNUSED
markers.
From-SVN: r169143
Diffstat (limited to 'gcc/compare-elim.c')
-rw-r--r-- | gcc/compare-elim.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/compare-elim.c b/gcc/compare-elim.c index 0ddeb7f..c3eecfa 100644 --- a/gcc/compare-elim.c +++ b/gcc/compare-elim.c @@ -404,7 +404,8 @@ find_comparisons (void) Note that this function may start a change group. */ static rtx -maybe_select_cc_mode (struct comparison *cmp, rtx a, rtx b) +maybe_select_cc_mode (struct comparison *cmp, rtx a ATTRIBUTE_UNUSED, + rtx b ATTRIBUTE_UNUSED) { enum machine_mode sel_mode; const int n = cmp->n_uses; |