]> granicus.if.org Git - python/commitdiff
Fix icc warnings. This couldn't have been correct since i is checked
authorNeal Norwitz <nnorwitz@gmail.com>
Sun, 8 Jan 2006 01:10:34 +0000 (01:10 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sun, 8 Jan 2006 01:10:34 +0000 (01:10 +0000)
for 2 different values without changing.  I think this was the intent.
The unused warning only occurs when not building in debug mode.

Parser/pgen.c

index e643d330b4d7f1f9e38a83b9dceba255e896b9df..05534c743b477b36a6291e35c81a6af07450e5e3 100644 (file)
@@ -276,14 +276,11 @@ compile_item(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
 static void
 compile_atom(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
 {
-       int i;
-       
        REQ(n, ATOM);
-       i = n->n_nchildren;
-       REQN(i, 1);
+       REQN(n->n_nchildren, 1);
        n = n->n_child;
        if (n->n_type == LPAR) {
-               REQN(i, 3);
+               REQN(n->n_nchildren, 3);
                n++;
                REQ(n, RHS);
                compile_rhs(ll, nf, n, pa, pb);