<div class="gmail_quote">On Fri, Jul 8, 2011 at 3:18 PM, Bruno Cardoso Lopes <span dir="ltr"><<a href="mailto:bruno.cardoso@gmail.com">bruno.cardoso@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
+    } else if (Size == 128 | Size == 256) {</blockquote></div><br><div>I assume you meant "||" here rather than "|"?</div><div><br></div><div>GCC actually catches this:</div><div><br></div><div>lib/CodeGen/TargetInfo.cpp:1139: error: suggest parentheses around comparison in operand of '|' [-Wparentheses]</div>
<div><br></div><div>Although I don't see why parentheses are relevant here. Just looks suspicious when | is used with bool operands inside an if condition...</div>