Hello<br><br>While building LLVM, the compiler (static analysis) is giving me a warning about "if (RangeUse[0] == 0 && RangeUse[0] == 0) {".<br>Can somebody familar with the codebase look over it, maybe  this should be "if (RangeUse[0] == 0 && RangeUse[1] == 0) {", otherwise sorry for the noise.<br>
<br><br><br>Index: F:/dev/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp<br>===================================================================<br>--- F:/dev/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp    (revision 79629)<br>
+++ F:/dev/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp    (working copy)<br>@@ -2522,7 +2522,7 @@<br>       }<br>     }<br> <br>-    if (RangeUse[0] == 0 && RangeUse[0] == 0) {<br>+    if (RangeUse[0] == 0 && RangeUse[1] == 0) {<br>
       setValue(&I, DAG.getUNDEF(VT));  // Vectors are not used.<br>       return;<br>     }<br><br>Marius Wachtler<br><br><br><br>