<br><br><div class="gmail_quote">On Tue, Jun 12, 2012 at 2:04 AM, Seth Cantrell <span dir="ltr"><<a href="mailto:bames53@gmail.com" target="_blank">bames53@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
There's a -Weverything which I think you can use to check to see if a bit of code triggers any warnings.<br>
<br>
On Jun 11, 2012, at 7:10 AM, Devchandra L Meetei wrote:<br>
<br>
> Hi All<br>
> Does clang support any switch to warn about a conditional eg in if(p* !='h' || p* !='H'), which is always true.<br>
><br>
><br>
> Thankss in reply for  timely response<br>
><br>
> Warm Reagrds<br>
> --Dev<br>
> _______________________________________________<br>
> cfe-dev mailing list<br>
> <a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
<br>
<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br>Yes, this is actually the very purpose of -Weverything, it actives everything so you can discover new warnings.<br><br>If the output is too verbose, the diagnostics tell you what flags activated them so you can turn them off with the "no-" version:  -Weverything -Wno-unused.<br>
<br>-- Matthieu<br>