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

References

unittests/IR/InstructionsTest.cpp
   68   ModuleWithFunctionTest() : M(new Module("MyModule", Ctx)) {
   69     FArgTypes.push_back(Type::getInt8Ty(Ctx));
   70     FArgTypes.push_back(Type::getInt32Ty(Ctx));
   71     FArgTypes.push_back(Type::getInt64Ty(Ctx));
   73         FunctionType::get(Type::getVoidTy(Ctx), FArgTypes, false);
   84   Value *Args[] = {ConstantInt::get(Type::getInt8Ty(Ctx), 20),
   85                    ConstantInt::get(Type::getInt32Ty(Ctx), 9999),
   86                    ConstantInt::get(Type::getInt64Ty(Ctx), 42)};
   99   BasicBlock *BB1 = BasicBlock::Create(Ctx, "", F);
  100   BasicBlock *BB2 = BasicBlock::Create(Ctx, "", F);
  102   Value *Args[] = {ConstantInt::get(Type::getInt8Ty(Ctx), 20),
  103                    ConstantInt::get(Type::getInt32Ty(Ctx), 9999),
  104                    ConstantInt::get(Type::getInt64Ty(Ctx), 42)};
  598   auto *OnlyBB = BasicBlock::Create(Ctx, "bb", F);
  601   IRBuilder<NoFolder> B(Ctx);