Kaydet (Commit) 46aae198 authored tarafından Neal Norwitz's avatar Neal Norwitz

Revert previous checkin, the check is for <, not ==. i is unsed in non-debug…

Revert previous checkin, the check is for <, not ==.  i is unsed in non-debug builds, but is used in debug builds
üst dde5090d
...@@ -276,11 +276,14 @@ compile_item(labellist *ll, nfa *nf, node *n, int *pa, int *pb) ...@@ -276,11 +276,14 @@ compile_item(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
static void static void
compile_atom(labellist *ll, nfa *nf, node *n, int *pa, int *pb) compile_atom(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
{ {
int i;
REQ(n, ATOM); REQ(n, ATOM);
REQN(n->n_nchildren, 1); i = n->n_nchildren;
REQN(i, 1);
n = n->n_child; n = n->n_child;
if (n->n_type == LPAR) { if (n->n_type == LPAR) {
REQN(n->n_nchildren, 3); REQN(i, 3);
n++; n++;
REQ(n, RHS); REQ(n, RHS);
compile_rhs(ll, nf, n, pa, pb); compile_rhs(ll, nf, n, pa, pb);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment