<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Jul 30, 2016 at 1:47 PM, Joerg Sonnenberger via cfe-commits <span dir="ltr"><<a href="mailto:cfe-commits@lists.llvm.org" target="_blank">cfe-commits@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Tue, Jul 26, 2016 at 10:30:22PM +0000, Laxman Sole via cfe-commits wrote:<br>
> Currently basic_string's destructor is not getting inlined. So adding 'inline' attribute to ~basic_string().<br>
<br>
</span>Does this change the ABI?<br></blockquote><div><br></div><div>No. Clang still externally instantiates the dtor in the dylib because the '_LIBCPP_INLINE_VISIBILITY` attribute is not applied to the declaration.</div><div>However adding the attribute to the out-of-line definition allows Clang to generate inline dtor calls.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Joerg<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@lists.llvm.org">cfe-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div></div>