[LLVMdev] Error for AllocaInst and Instruction

Nick Lewycky nicholas at mxc.ca
Thu Jul 25 11:36:25 PDT 2013


Rasha Omar wrote:
> Hi,
> For the following code
>          const Type * Int32Type =
> IntegerType::getInt32Ty(getGlobalContext());

Don't use const types any more. Since llvm 3.0, nothing takes a const Type*.

Nick

>          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
> *
>
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev




More information about the llvm-dev mailing list