File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/lib/CodeGen/SelectionDAG Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11872,7 +11872,7 @@ bool operator<(const UseMemo &L, const UseMemo &R) {
1187211872/// pointed to by a UseMemo is deleted, set the User to nullptr to indicate that
1187311873/// the node already has been taken care of recursively.
1187411874class RAUOVWUpdateListener : public SelectionDAG::DAGUpdateListener {
11875- SmallVector <UseMemo, 4 > &Uses;
11875+ SmallVectorImpl <UseMemo> &Uses;
1187611876
1187711877 void NodeDeleted(SDNode *N, SDNode *E) override {
1187811878 for (UseMemo &Memo : Uses)
@@ -11881,7 +11881,7 @@ class RAUOVWUpdateListener : public SelectionDAG::DAGUpdateListener {
1188111881 }
1188211882
1188311883public:
11884- RAUOVWUpdateListener(SelectionDAG &d, SmallVector <UseMemo, 4 > &uses)
11884+ RAUOVWUpdateListener(SelectionDAG &d, SmallVectorImpl <UseMemo> &uses)
1188511885 : SelectionDAG::DAGUpdateListener(d), Uses(uses) {}
1188611886};
1188711887
You can’t perform that action at this time.
0 commit comments