Searched defs:ExtractElementInst (Results 1 - 1 of 1) sorted by relevance
/external/llvm/include/llvm/IR/ |
H A D | Instructions.h | 1974 // ExtractElementInst Class 1977 /// ExtractElementInst - This instruction extracts a single (scalar) 1980 class ExtractElementInst : public Instruction { class in namespace:llvm 1981 ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr = "", 1983 ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr, 1989 ExtractElementInst *cloneImpl() const; 1992 static ExtractElementInst *Create(Value *Vec, Value *Idx, 1995 return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertBefore); 1997 static ExtractElementInst *Create(Value *Vec, Value *Idx, 2000 return new(2) ExtractElementInst(Ve [all...] |
Completed in 561 milliseconds