<div dir="ltr"><div><div>Hi,<br><br></div>  I think you may try to use llvm::Twine(int).  For example, to convert 30 to string, you can use:<br><br></div><div>Twine(30).str()<br><br></div><div>To convert the string back to integer, you can try the StringRef::getAsInteger(unsigned, APInt &).  For example:<br>
<br></div><div>APInt i;<br></div><div>str.getAsInteger(/*radix=*/ 10, /*output=*/ i);<br></div><div><br></div><div>Sincerely,<br>Logan<br></div><div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">
On Thu, May 2, 2013 at 9:53 PM, Alexandru Ionut Diaconescu <span dir="ltr"><<a href="mailto:alexandruionutdiaconescu@gmail.com" target="_blank">alexandruionutdiaconescu@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Hello everyone,
<div><br></div><div>I have an integer and I want to convert it to StringRef in order to set metadata.</div><div>setMetadata->(StringRef, MDNode*);</div><div><br></div><div>It is there a native LLVM way to do it?</div>

<div><br></div><div>1. In the llvm::APSInt Class is toString() method, which seems it is not for this purpose</div><div>2. itoa and string are not part of LLVM</div><div>3. stringstream is not part of LLVM</div>
<div>4. to_string is not part of LLVM</div><div>5. any casting method?</div><div><br></div><div>Also, I would like to get the metadata and convert it back to integer.</div><div><br></div><div>
Thank you !</div></div>
<br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
<br></blockquote></div><br></div>