diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-15 04:12:42 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-15 04:12:42 +0000 |
commit | 7cc1628dc8ce029afc72194d0453c430bfab0db6 (patch) | |
tree | 81ed436a3f3d4a9f5b0b733a5af9b9a8d1df7ab8 /gcc/cfgcleanup.c | |
parent | 9d45592a7ce7917cfd2aa12242bd8714bbe07cc6 (diff) | |
download | gcc-7cc1628dc8ce029afc72194d0453c430bfab0db6.tar.gz |
* builtins.c (expand_builtin_memcmp): Mark parameter with
ATTRIBUTE_UNUSED.
* cfgcleanup.c (insns_match_p): Likewise.
* regrename.c (mode_change_ok): Likewise.
* gcc.c (execute): Const-ify.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48033 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 2f0115323a8..09b889bcbe3 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -553,7 +553,7 @@ merge_blocks (e, b, c, mode) static bool insns_match_p (mode, i1, i2) - int mode; + int mode ATTRIBUTE_UNUSED; rtx i1, i2; { rtx p1, p2; |