diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-09-12 16:55:57 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-09-12 16:55:57 +0000 |
commit | ff6e9b469982f5db9675316c840db053dfa5328c (patch) | |
tree | f35f5b99463f227644a77be16f489091c078ee17 /perllib | |
parent | 3100e6cb631dbd6225dd6464688ca6cedf670755 (diff) | |
download | nasm-ff6e9b469982f5db9675316c840db053dfa5328c.tar.gz nasm-ff6e9b469982f5db9675316c840db053dfa5328c.tar.bz2 nasm-ff6e9b469982f5db9675316c840db053dfa5328c.zip |
phash: Tell the user when the graph is OK
Tell the user when the graph is OK, so that we don't get quite so much of
"a list of errors followed by a long pause."
Diffstat (limited to 'perllib')
-rw-r--r-- | perllib/phash.ph | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/phash.ph b/perllib/phash.ph index 38140e5..6033427 100644 --- a/perllib/phash.ph +++ b/perllib/phash.ph @@ -120,8 +120,8 @@ sub gen_hash_n($$$) { print STDERR "Graph is cyclic\n"; return; } - - # print STDERR "Graph:\n$gr\n"; + + print STDERR "Graph OK, computing vertices...\n"; # Now we need to assign values to each vertex, so that for each # edge, the sum of the values for the two vertices give the value |