aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/function.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b0618ac..eea7ece 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -49,6 +49,10 @@
unsignedp.
* reload1.c (set_reload_reg): Add ATTRIBUTE_UNUSED to regno.
+ PR bootstrap/44756
+ * function.c (thread_prologue_and_epilogue_insns): Add
+ ATTRIBUTE_UNUSED to seq, epilogue_end and entry_edge.
+
2010-11-04 Ira Rosen <irar@il.ibm.com>
PR tree-optimization/46213
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;