<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Nov 9, 2011, at 10:35 AM, Chris Lattner wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Nov 9, 2011, at 2:58 AM, Nick Lewycky wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><br>For one example, for enums clang will emit the names for all of the enum<span class="Apple-converted-space"> </span><br>cases. GCC only emits the ones that are used.</span></blockquote></div><br><div>Is this a clang bug, or a feature?</div></div></blockquote><br></div><div>IMO this is probably a feature. Thinking about it like this:</div><div><br></div><div>int foo(enum Bar x) {</div><div><span class="Apple-tab-span" style="white-space:pre">       </span>switch(x)</div><div>          ...</div><div>}</div><br><div>int baz (int a)</div><div>{</div><div>   foo(a);</div><div>}</div><div><br></div><div>It's not good, but people do it. Also constructing enums via & and | etc. It'd be nice to be able to get the name of whatever it is that the code generator actually produced :)</div><div><br></div><div>-eric</div></body></html>