aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorJoern Rennecke <amylaar@spamcop.net>2010-11-04 18:01:45 +0000
committerJoern Rennecke <amylaar@gcc.gnu.org>2010-11-04 18:01:45 +0000
commit2e239f9d203baf1378cdaee7dc1ef60bfba997da (patch)
tree1521adeb94ca576532f24bec5d7082311e6af5bd /gcc/function.c
parent76d0be83b2b60ed61c4c85e6579b2427e223a6af (diff)
downloadgcc-2e239f9d203baf1378cdaee7dc1ef60bfba997da.zip
gcc-2e239f9d203baf1378cdaee7dc1ef60bfba997da.tar.gz
gcc-2e239f9d203baf1378cdaee7dc1ef60bfba997da.tar.bz2
re PR bootstrap/44756 ([meta-bug] --enable-werror-always issues)
PR bootstrap/44756 * function.c (thread_prologue_and_epilogue_insns): Add ATTRIBUTE_UNUSED to seq, epilogue_end and entry_edge. From-SVN: r166320
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c
index d0da7dc..cb6a2b6 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -5216,8 +5216,8 @@ static void
thread_prologue_and_epilogue_insns (void)
{
bool inserted;
- rtx seq, epilogue_end;
- edge entry_edge;
+ rtx seq ATTRIBUTE_UNUSED, epilogue_end ATTRIBUTE_UNUSED;
+ edge entry_edge ATTRIBUTE_UNUSED;
edge e;
edge_iterator ei;