search for: getarrayof

Displaying 1 result from an estimated 1 matches for "getarrayof".

Did you mean: getarray
2011 Feb 04
3
[LLVMdev] ConstantBuilder proposal
...ay( const ArrayType *Ty, ///< The type of the array RandomAccessIterator ArgBegin, ///< Iterator for the first element RandomAccessIterator ArgEnd) { ///< The elements of the array return GetArray(Ty, &ArgBegin[0], ArgEnd - ArgBegin); } /// GetArrayOf - return a constant array given an element type and a vector /// of elements. static Constant *GetArrayOf( const Type *ElementTy, ///< The type of the array elements const std::vector<Constant*> &V) { ///< The elements of the array return GetArray(Array...