<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 23, 2015 at 3:44 PM, Kaylor, Andrew <span dir="ltr"><<a href="mailto:andrew.kaylor@intel.com" target="_blank">andrew.kaylor@intel.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">When I compile this with Visual Studio at /W4 I get this warning:<br>
<br>
llvm\lib\Support\APFloat.cpp(1433): warning C4805: '^=' : unsafe mix of type 'bool' and type 'unsigned int' in operation<br></blockquote><div><br>Is this worth warning on (Clang doesn't, for example) - should we just disable the MSVC warning, then?<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
According to the documentation this is a level 1 warning, so it probably appears with all builds.  I just happen to have been working on a change to enable W4 warnings on Windows.<br>
<br>
-Andy<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
-----Original Message-----<br>
From: <a href="mailto:llvm-commits-bounces@cs.uiuc.edu">llvm-commits-bounces@cs.uiuc.edu</a> [mailto:<a href="mailto:llvm-commits-bounces@cs.uiuc.edu">llvm-commits-bounces@cs.uiuc.edu</a>] On Behalf Of David Blaikie<br>
Sent: Monday, March 23, 2015 12:46 PM<br>
To: <a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>
Subject: [llvm] r233004 - Refactor: Simplify boolean expressions in llvm Support<br>
<br>
Author: dblaikie<br>
Date: Mon Mar 23 14:45:40 2015<br>
New Revision: 233004<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=233004&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=233004&view=rev</a><br>
Log:<br>
Refactor: Simplify boolean expressions in llvm Support<br>
<br>
Simplify boolean expressions using `true` and `false` with `clang-tidy`<br>
<br>
Patch by Richard Thomson - I dropped the parens and != 0 test, for consistency with other patches/tests like this, but I'm open to the notion that we should add the explicit non-zero test in all these sort of cases (non-bool assigned to a bool).<br>
<br>
Differential Revision: <a href="http://reviews.llvm.org/D8526" target="_blank">http://reviews.llvm.org/D8526</a><br>
<br>
Modified:<br>
    llvm/trunk/lib/Support/APFloat.cpp<br>
<br>
Modified: llvm/trunk/lib/Support/APFloat.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/APFloat.cpp?rev=233004&r1=233003&r2=233004&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/APFloat.cpp?rev=233004&r1=233003&r2=233004&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/lib/Support/APFloat.cpp (original)<br>
+++ llvm/trunk/lib/Support/APFloat.cpp Mon Mar 23 14:45:40 2015<br>
@@ -1430,7 +1430,7 @@ APFloat::addOrSubtractSignificand(const<br>
<br>
   /* Determine if the operation on the absolute values is effectively<br>
      an addition or subtraction.  */<br>
-  subtract ^= (sign ^ rhs.sign) ? true : false;<br>
+  subtract ^= sign ^ rhs.sign;<br>
<br>
   /* Are we bigger exponent-wise than the RHS?  */<br>
   bits = exponent - rhs.exponent;<br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
</div></div></blockquote></div><br></div></div>