summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-11 00:52:18 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-11 00:52:18 +0000
commitb0effe67f3808898f0e6ed4207c077faf120d81e (patch)
tree6480ef676ff053fdd4c073a2f959e059e6b0948a
parent368973253075dfc6e8594bc31572d9ca64a83994 (diff)
downloadppe42-gcc-b0effe67f3808898f0e6ed4207c077faf120d81e.tar.gz
ppe42-gcc-b0effe67f3808898f0e6ed4207c077faf120d81e.zip
* genautomata.c (make_automaton, NDFA_to_DFA):
Print progress bars with '.' characters instead of '*'. (build_automaton): Change notes to match. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75664 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/genautomata.c14
2 files changed, 13 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index adf35bb17f7..2ac7526a1bb 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+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
diff --git a/gcc/genautomata.c b/gcc/genautomata.c
index b343d6e65ba..12da0c7058d 100644
--- a/gcc/genautomata.c
+++ b/gcc/genautomata.c
@@ -5733,7 +5733,7 @@ make_automaton (automaton_t automaton)
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)
@@ -5764,7 +5764,7 @@ make_automaton (automaton_t automaton)
VLA_PTR_ADD (state_stack, state2);
states_n++;
if (states_n % 100 == 0)
- fprintf (stderr, "*");
+ fprintf (stderr, ".");
}
if (advance_cycle_ainsn == NULL)
abort ();
@@ -5935,7 +5935,7 @@ NDFA_to_DFA (automaton_t automaton)
{
states_n++;
if (states_n % 100 == 0)
- fprintf (stderr, "*");
+ fprintf (stderr, ".");
}
}
}
@@ -6396,9 +6396,9 @@ build_automaton (automaton_t automaton)
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");
@@ -6408,9 +6408,9 @@ build_automaton (automaton_t automaton)
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");
OpenPOWER on IntegriCloud