diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-04 14:58:40 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-04 14:58:40 +0000 |
commit | cfc70ceceeca864aa59b2bbfb748f23ac695137f (patch) | |
tree | 7115c4f4b31194460ec6ff126d78685d1c9873b9 /gcc/ifcvt.c | |
parent | cff59264979ac113cb524bab195840adbeca930c (diff) | |
download | gcc-cfc70ceceeca864aa59b2bbfb748f23ac695137f.tar.gz |
PR bootstrap/44756
* ifcvt.c (noce_emit_cmove): Add ATTRIBUTE_UNUSED to target and
unsignedp.
* reload1.c (set_reload_reg): Add ATTRIBUTE_UNUSED to regno.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166313 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ifcvt.c')
-rw-r--r-- | gcc/ifcvt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index ff75ed189c0..58ee90c4b21 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -1333,8 +1333,8 @@ static rtx noce_emit_cmove (struct noce_if_info *if_info, rtx x, enum rtx_code code, rtx cmp_a, rtx cmp_b, rtx vfalse, rtx vtrue) { - rtx target; - int unsignedp; + rtx target ATTRIBUTE_UNUSED; + int unsignedp ATTRIBUTE_UNUSED; /* If earliest == jump, try to build the cmove insn directly. This is helpful when combine has created some complex condition |