Searched defs:Longer (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp239 /// Returns true if Prefix is a prefix of longer. That means, Longer has a size
241 /// elements in Prefix is the same as the corresponding elements in Longer.
243 /// This means it also returns true when Prefix and Longer are equal!
245 const ArgPromotion::IndicesVector &Longer) {
246 if (Prefix.size() > Longer.size())
248 return std::equal(Prefix.begin(), Prefix.end(), Longer.begin());
244 IsPrefix(const ArgPromotion::IndicesVector &Prefix, const ArgPromotion::IndicesVector &Longer) argument

Completed in 53 milliseconds