HomeSort by: relevance | last modified time | path
    Searched defs:InsertValueInst (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 2437 // InsertValueInst Class
2443 class InsertValueInst : public Instruction {
2446 InsertValueInst(const InsertValueInst &IVI);
2452 inline InsertValueInst(Value *Agg, Value *Val,
2456 inline InsertValueInst(Value *Agg, Value *Val,
2462 InsertValueInst(Value *Agg, Value *Val, unsigned Idx,
2465 InsertValueInst(Value *Agg, Value *Val, unsigned Idx, const Twine &NameStr,
2475 InsertValueInst *cloneImpl() const;
2483 static InsertValueInst *Create(Value *Agg, Value *Val
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 2316 // InsertValueInst Class
2319 void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
2327 assert(!Idxs.empty() && "InsertValueInst must have at least one index");
2338 InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
2340 OperandTraits<InsertValueInst>::op_begin(this), 2),
4352 InsertValueInst *InsertValueInst::cloneImpl() const {
4353 return new InsertValueInst(*this)
    [all...]

Completed in 38 milliseconds