]> granicus.if.org Git - yasm/commitdiff
Now that genperf takes an output filename, change informational outputs
authorPeter Johnson <peter@tortall.net>
Tue, 11 Sep 2007 02:11:19 +0000 (02:11 -0000)
committerPeter Johnson <peter@tortall.net>
Tue, 11 Sep 2007 02:11:19 +0000 (02:11 -0000)
to stdout instead of stderr.

svn path=/trunk/yasm/; revision=1942

tools/genperf/perfect.c

index 26d59be4e082ff08e0a3a80f676cf5b25cb16296..579d36068f52b84ff509c83fd2a731e508972773 100644 (file)
@@ -673,7 +673,7 @@ static void hash_ab(
     sprintf(final->line[0], "  unsigned long rsl = (a ^ scramble[tab[b]]);\n");
   }
 
-  fprintf(stderr, "success, found a perfect hash\n");
+  printf("success, found a perfect hash\n");
 
   free((void *)tabq);
   free((void *)tabh);
@@ -903,7 +903,7 @@ void findhash(
       continue;                             /* two keys have same (a,b) pair */
     }
 
-    fprintf(stderr, "found distinct (A,B) on attempt %ld\n", trysalt);
+    printf("found distinct (A,B) on attempt %ld\n", trysalt);
 
     /* Given distinct (A,B) for all keys, build a perfect hash */
     if (!perfect(*tabb, *tabh, tabq, *blen, *smax, scramble, nkeys, form))
@@ -934,7 +934,7 @@ void findhash(
     break;
   }
 
-  fprintf(stderr, "built perfect hash table of size %ld\n", *blen);
+  printf("built perfect hash table of size %ld\n", *blen);
 
   /* free working memory */
   free((void *)tabq);