<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Nov 13, 2014 at 4:08 PM, Duncan P. N. Exon Smith <span dir="ltr"><<a href="mailto:dexonsmith@apple.com" target="_blank">dexonsmith@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5"><br>
> On 2014-Nov-13, at 16:07, David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>> wrote:<br>
><br>
><br>
><br>
> On Thu, Nov 13, 2014 at 3:59 PM, Duncan P. N. Exon Smith <<a href="mailto:dexonsmith@apple.com">dexonsmith@apple.com</a>> wrote:<br>
> Author: dexonsmith<br>
> Date: Thu Nov 13 17:59:16 2014<br>
> New Revision: 221951<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=221951&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=221951&view=rev</a><br>
> Log:<br>
> IR: Make MDString::getName() private<br>
><br>
> Hide the fact that `MDString`'s string is stored in `Value::Name` --<br>
> that's going to change soon.  Update the only in-tree client that was<br>
> using it instead of `Value::getString()`.<br>
><br>
> Part of PR21532.<br>
><br>
> Modified:<br>
>     llvm/trunk/include/llvm/IR/Metadata.h<br>
>     llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp<br>
><br>
> Modified: llvm/trunk/include/llvm/IR/Metadata.h<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Metadata.h?rev=221951&r1=221950&r2=221951&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Metadata.h?rev=221951&r1=221950&r2=221951&view=diff</a><br>
> ==============================================================================<br>
> --- llvm/trunk/include/llvm/IR/Metadata.h (original)<br>
> +++ llvm/trunk/include/llvm/IR/Metadata.h Thu Nov 13 17:59:16 2014<br>
> @@ -61,6 +61,11 @@ class MDString : public Value {<br>
>    MDString(const MDString &) LLVM_DELETED_FUNCTION;<br>
><br>
>    explicit MDString(LLVMContext &C);<br>
> +<br>
> +private:<br>
> +  /// \brief Shadow Value::getName() to prevent its use.<br>
> +  StringRef getName() const { return Value::getName(); }<br>
><br>
> You could just delete it (LLVM_DELETED_FUNCTION) rather than giving it an implementation you don't want anyone to use. (compiler error on modern compilers, linker error otherwise if anyone tries to call it)<br>
><br>
<br>
</div></div>It's still in use internally in the class for now.<br></blockquote><div><br>Then the comment/commit message is a little misleading. Might as well update all the internal uses too & then delete it.<br><br>Anyway, I'm sure it'll come out eventually.<br> </div></div><br></div></div>