<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Fri, Oct 27, 2017 at 2:13 PM Jason Molenda <<a href="mailto:jmolenda@apple.com">jmolenda@apple.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">haven't had a chance to look at the patch yet, but just to comment on one part from Zach:<br>
<br>
> On Oct 27, 2017, at 2:06 PM, Zachary Turner via Phabricator via lldb-commits <<a href="mailto:lldb-commits@lists.llvm.org" target="_blank">lldb-commits@lists.llvm.org</a>> wrote:<br>
><br>
><br>
> ================<br>
> Comment at: source/Target/Platform.cpp:986-991<br>
> +    if (normalized_triple.getVendorName().empty())<br>
> +      normalized_triple.setVendor(compatible_triple.getVendor());<br>
> +    if (normalized_triple.getOSName().empty())<br>
> +      normalized_triple.setOS(compatible_triple.getOS());<br>
> +    if (normalized_triple.getEnvironmentName().empty())<br>
> +      normalized_triple.setEnvironment(compatible_triple.getEnvironment());<br>
> ----------------<br>
> Are these cases even possible?  Why would the vendor and os ever be empty?  I thought only the environment could be empty.<br>
><br>
<br>
This can happen when connecting to a bare board / low level firmware development.  You may only know armv7em-*-*.<br><br></blockquote><div><br></div><div>But even then, they're not *empty*, they're equal to *.  And I would also imagine that after it's passed to `Triple::normalize`, part of the normalization would turn those *s into the "unknown", so you'd end up with armv7em-unknown-unknown.  In which case they're still not empty., they're just equal to "unknown".</div><div><br></div><div>Maybe I'm wrong though</div></div></div>