[BACK]Return to func.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / xlint / lint1

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/xlint/lint1/func.c between version 1.82 and 1.83

version 1.82, 2021/03/21 11:38:24 version 1.83, 2021/03/21 11:55:59
Line 830  do2(tnode_t *tn)
Line 830  do2(tnode_t *tn)
   
         expr(tn, false, true, true, true);          expr(tn, false, true, true, true);
   
         /*          if (cstmt->c_infinite)
          * The end of the loop is only reached if it is no endless loop                  reached = false;
          * or there was a break statement which could be reached.          if (cstmt->c_break)
          */                  reached = true;
         reached = !cstmt->c_infinite || cstmt->c_break;  
         rchflg = false;          rchflg = false;
   
         popctrl(T_DO);          popctrl(T_DO);

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83

CVSweb <webmaster@jp.NetBSD.org>