<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">2) General llvm convention is to avoid<br>
<br>
+  bool candidate = L->isThreeStageUnrollCandidate(L, LI);<br>
+  if(candidate) {<br>
….<br>
<br>
and do<br>
<br>
+  if (bool candidate = … ) {<br>
+  }<br>
<br>
if candidate is not used outside "if".<br></blockquote><div><br></div><div>At that point you might as well just write:<br><br>if (L->isThreeStageUnrollCandidate(L, LI)) {</div><div>} </div></div>