Fix icc warnings: shadowing local variables
diff --git a/Python/ast.c b/Python/ast.c
index 745cda2..bba599b 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -252,7 +252,7 @@
                 if (!stmts)
 		    goto error;
                 if (num == 1) {
-		    stmt_ty s = ast_for_stmt(&c, n);
+		    s = ast_for_stmt(&c, n);
 		    if (!s)
 			goto error;
                     asdl_seq_SET(stmts, 0, s);
@@ -1092,7 +1092,6 @@
                 return NULL;
 
             for (j = 0; j < n_ifs; j++) {
-                expr_ty expression;
                 REQ(ch, gen_iter);
                 ch = CHILD(ch, 0);
                 REQ(ch, gen_if);