[BACK]Return to verbose.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / yacc

Diff for /src/usr.bin/yacc/verbose.c between version 1.7 and 1.8

version 1.7, 2003/06/03 02:56:24 version 1.8, 2003/06/19 16:34:53
Line 57 
Line 57 
 void print_gotos(int);  void print_gotos(int);
   
 void  void
 verbose()  verbose(void)
 {  {
     int i;      int i;
   
Line 82 
Line 82 
   
   
 void  void
 log_unused()  log_unused(void)
 {  {
     int i;      int i;
     short *p;      short *p;
Line 102 
Line 102 
   
   
 void  void
 log_conflicts()  log_conflicts(void)
 {  {
     int i;      int i;
   
Line 131 
Line 131 
   
   
 void  void
 print_state(state)  print_state(int state)
 int state;  
 {  {
     if (state)      if (state)
         fprintf(verbose_file, "\n\n");          fprintf(verbose_file, "\n\n");
Line 146 
Line 145 
   
   
 void  void
 print_conflicts(state)  print_conflicts(int state)
 int state;  
 {  {
     int symbol, act, number;      int symbol, act, number;
     action *p;      action *p;
Line 195 
Line 193 
   
   
 void  void
 print_core(state)  print_core(int state)
 int state;  
 {  {
     int i;      int i;
     int k;      int k;
Line 232 
Line 229 
   
   
 void  void
 print_nulls(state)  print_nulls(int state)
 int state;  
 {  {
     action *p;      action *p;
     int i, j, k, nnulls;      int i, j, k, nnulls;
Line 277 
Line 273 
   
   
 void  void
 print_actions(stateno)  print_actions(int stateno)
 int stateno;  
 {  {
     action *p;      action *p;
     shifts *sp;      shifts *sp;
Line 305 
Line 300 
   
   
 void  void
 print_shifts(p)  print_shifts(action *p)
 action *p;  
 {  {
     int count;      int count;
     action *q;      action *q;
Line 331 
Line 325 
   
   
 void  void
 print_reductions(p, defred)  print_reductions(action *p, int defred)
 action *p;  
 int defred;  
 {  {
     int k, anyreds;      int k, anyreds;
     action *q;      action *q;
Line 370 
Line 362 
   
   
 void  void
 print_gotos(stateno)  print_gotos(int stateno)
 int stateno;  
 {  {
     int i, k;      int i, k;
     int as;      int as;

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8