<div dir="ltr"><div><div><div>Ok, now it's arising another problem. IR code that I obtain is the following:<br><br>i8* bitcast ([5 x i8] c"hello\00" to i8*)<br></div><br>generated from instructions:<br><br>ConstantExpr::getBitCast (ConstantDataArray::getString (getGlobalContext (), "hello"), PointerType::get (Type::getInt8Ty (getGlobalContext ()), 0))<br>

<br></div>but the LLC tool says: invalid cast opcode for cast from '[5 x i8]' to 'i8*'.<br><br></div>Any help?<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">2012/12/18 Óscar Fuentes <span dir="ltr"><<a href="mailto:ofv@wanadoo.es" target="_blank">ofv@wanadoo.es</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">Alessio Giovanni Baroni <<a href="mailto:alessiogiovanni.baroni@gmail.com">alessiogiovanni.baroni@gmail.com</a>> writes:<br>

<br>
</div><div class="im">> Because I need to convert an [4 x i8] type to i8* in the instantiation of a<br>
> GlobalVariable.<br>
> I have the follow declaration: %xxx = type { i8* } and I must emit the<br>
> following variable:<br>
> @yyy = linkonce_odr constant %xxx { [4 x i8] c"hello\00" }, but it's wrong.<br>
><br>
> How do I do?<br>
<br>
</div>You can use the ConstantExpr::getBitCast static member function:<br>
<br>
<a href="http://llvm.org/doxygen/classllvm_1_1ConstantExpr.html#aba93ec4079f8d709a1d5b4745310782e" target="_blank">http://llvm.org/doxygen/classllvm_1_1ConstantExpr.html#aba93ec4079f8d709a1d5b4745310782e</a><br>
<br>
This is a common idiom on LLVM: a base class has static methods for<br>
creating instances of derived classes.<br>
<div class="HOEnZb"><div class="h5"><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>
</div></div></blockquote></div><br></div>