File tree 1 file changed +2
-2
lines changed
llvm/lib/CodeGen/SelectionDAG 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) {
11872
11872
/// pointed to by a UseMemo is deleted, set the User to nullptr to indicate that
11873
11873
/// the node already has been taken care of recursively.
11874
11874
class RAUOVWUpdateListener : public SelectionDAG::DAGUpdateListener {
11875
- SmallVector <UseMemo, 4 > &Uses;
11875
+ SmallVectorImpl <UseMemo> &Uses;
11876
11876
11877
11877
void NodeDeleted(SDNode *N, SDNode *E) override {
11878
11878
for (UseMemo &Memo : Uses)
@@ -11881,7 +11881,7 @@ class RAUOVWUpdateListener : public SelectionDAG::DAGUpdateListener {
11881
11881
}
11882
11882
11883
11883
public:
11884
- RAUOVWUpdateListener(SelectionDAG &d, SmallVector <UseMemo, 4 > &uses)
11884
+ RAUOVWUpdateListener(SelectionDAG &d, SmallVectorImpl <UseMemo> &uses)
11885
11885
: SelectionDAG::DAGUpdateListener(d), Uses(uses) {}
11886
11886
};
11887
11887
You can’t perform that action at this time.
0 commit comments