[BACK]Return to tree.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/tree.c between version 1.276 and 1.277

version 1.276, 2021/04/10 18:06:53 version 1.277, 2021/04/17 16:58:04
Line 2081  check_pointer_conversion(tnode_t *tn, ty
Line 2081  check_pointer_conversion(tnode_t *tn, ty
                 return;                  return;
         }          }
   
         if (hflag && alignment_in_bits(nstp) > alignment_in_bits(ostp)) {          if (hflag && alignment_in_bits(nstp) > alignment_in_bits(ostp) &&
               !is_incomplete(ostp)) {
                 /* converting '%s' to '%s' may cause alignment problem */                  /* converting '%s' to '%s' may cause alignment problem */
                 warning(135, type_name(otp), type_name(ntp));                  warning(135, type_name(otp), type_name(ntp));
         }          }

Legend:
Removed from v.1.276  
changed lines
  Added in v.1.277

CVSweb <webmaster@jp.NetBSD.org>