+2004-01-10 Zack Weinberg <zack@codesourcery.com>
+
+ * genautomata.c (make_automaton, NDFA_to_DFA):
+ Print progress bars with '.' characters instead of '*'.
+ (build_automaton): Change notes to match.
+
2004-01-10 Kazu Hirata <kazu@cs.umass.edu>
* config/m32r/m32r.md: Use define_constants for unspec and
VLA_PTR_ADD (state_stack, state2);
states_n++;
if (states_n % 100 == 0)
- fprintf (stderr, "*");
+ fprintf (stderr, ".");
}
added_arc = add_arc (state, state2, ainsn, 1);
if (!ndfa_flag)
VLA_PTR_ADD (state_stack, state2);
states_n++;
if (states_n % 100 == 0)
- fprintf (stderr, "*");
+ fprintf (stderr, ".");
}
if (advance_cycle_ainsn == NULL)
abort ();
{
states_n++;
if (states_n % 100 == 0)
- fprintf (stderr, "*");
+ fprintf (stderr, ".");
}
}
}
ticker_on (&NDFA_time);
if (automaton->corresponding_automaton_decl == NULL)
- fprintf (stderr, "Create anonymous automaton (1 star is 100 new states):");
+ fprintf (stderr, "Create anonymous automaton (1 dot is 100 new states):");
else
- fprintf (stderr, "Create automaton `%s' (1 star is 100 new states):",
+ fprintf (stderr, "Create automaton `%s' (1 dot is 100 new states):",
automaton->corresponding_automaton_decl->name);
make_automaton (automaton);
fprintf (stderr, " done\n");
automaton->NDFA_arcs_num = arcs_num;
ticker_on (&NDFA_to_DFA_time);
if (automaton->corresponding_automaton_decl == NULL)
- fprintf (stderr, "Make anonymous DFA (1 star is 100 new states):");
+ fprintf (stderr, "Make anonymous DFA (1 dot is 100 new states):");
else
- fprintf (stderr, "Make DFA `%s' (1 star is 100 new states):",
+ fprintf (stderr, "Make DFA `%s' (1 dot is 100 new states):",
automaton->corresponding_automaton_decl->name);
NDFA_to_DFA (automaton);
fprintf (stderr, " done\n");