reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

examples/ModuleMaker/ModuleMaker.cpp
   35   Module *M = new Module("test", Context);
   39     FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
   47   BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", F);
   50   Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
   51   Value *Three = ConstantInt::get(Type::getInt32Ty(Context), 3);
   61   BB->getInstList().push_back(ReturnInst::Create(Context, Add));