Home | History | Annotate | Download | only in VMCore

Lines Matching refs:Elt

1477 InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
1483 assert(isValidOperands(Vec, Elt, Index) &&
1486 Op<1>() = Elt;
1491 InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
1497 assert(isValidOperands(Vec, Elt, Index) &&
1501 Op<1>() = Elt;
1506 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1511 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
1884 Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
1886 std::vector<Constant*>(PTy->getNumElements(), Elt));