On 12/08/15 20:31, James Norris wrote:
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index 056b2c1..8ace93c 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -13907,6 +13907,7 @@ tsubst_expr (tree t, tree args, tsubst_flags_t 
complain, tree in_decl,
               integral_constant_expression_p)

    tree stmt, tmp;
+tree s;

This caused a bootstrap failure (unused variable 's'). Committed fix as attached.

Thanks,
- Tom
Remove unused variable in tsubst_expr

2015-09-01  Tom de Vries  <t...@codesourcery.com>

	* pt.c (tsubst_expr): Remove unused variable s.
---
 gcc/cp/pt.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index bcea026..c94c463 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -14418,7 +14418,6 @@ tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
 	       integral_constant_expression_p)
 
   tree stmt, tmp;
-tree s;
   tree r;
   location_t loc;
 
-- 
1.9.1

Reply via email to