Home | History | Annotate | Download | only in IPO

Lines Matching defs:WorkList

176   SmallVector<Value *, 16> WorkList;
177 WorkList.insert(WorkList.end(), arg->user_begin(), arg->user_end());
178 while (!WorkList.empty()) {
179 Value *V = WorkList.back();
180 WorkList.pop_back();
183 WorkList.insert(WorkList.end(), V->user_begin(), V->user_end());