[LLVMdev] Error for AllocaInst and Instruction
Rasha Omar
rasha.sala7 at gmail.com
Thu Jul 25 05:12:42 PDT 2013
Hi,
For the following code
const Type * Int32Type =
IntegerType::getInt32Ty(getGlobalContext());
AllocaInst* newInst = new AllocaInst(Int32Type, 0, "flag", Bb);
Bb->getInstList().push_back(newInst);
It gives me the error
" error: no matching constructor for initialization of 'llvm::AllocaInst'
AllocaInst* newInst = new AllocaInst(Int32Type, 0, "flag", Bb);"
By using Instruction
const Type * Int32Type =
IntegerType::getInt32Ty(getGlobalContext());
Instruction* newInst = new Instruction(Int32Type, 0, "flag", Bb);
Bb->getInstList().push_back(newInst);
error: allocating an object of abstract class type 'llvm::Instruction'
Instruction* newInst = new Instruction(Int32Type, 0, "flag",
Bb);
--
*Rasha Salah Omar
Msc Student at E-JUST
Demonestrator at Faculty of Computers and Informatics
Benha University
*
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130725/beabb5f5/attachment.html>
More information about the llvm-dev
mailing list