Searched refs:SimpVect (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp528 // Simplified addends are placed <SimpVect>.
529 AddendVect SimpVect; local
543 unsigned StartIdx = SimpVect.size();
544 SimpVect.push_back(ThisAddend);
558 SimpVect.push_back(T);
563 if (StartIdx + 1 != SimpVect.size()) {
565 R = *SimpVect[StartIdx];
566 for (unsigned Idx = StartIdx + 1; Idx < SimpVect.size(); Idx++)
567 R += *SimpVect[Idx];
570 SimpVect
[all...]

Completed in 104 milliseconds