File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
llvm/lib/Transforms/Utils Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ enum LocalNum {
8080 LN_Last
8181};
8282
83- // Associate global and local DFS info with defs and uses, so we can sort them
84- // into a global domination ordering.
83+ // Associate global and local DFS info with defs (PInfo set) and uses (U set),
84+ // so we can sort them into a global domination ordering.
8585struct ValueDFS {
8686 int DFSIn = 0 ;
8787 int DFSOut = 0 ;
@@ -234,7 +234,7 @@ class PredicateInfoBuilder {
234234 StackEntry (const ValueDFS *V) : V(V) {}
235235 };
236236
237- typedef SmallVectorImpl<StackEntry> ValueDFSStack ;
237+ using ValueDFSStack = SmallVectorImpl<StackEntry>;
238238 void convertUsesToDFSOrdered (Value *, SmallVectorImpl<ValueDFS> &);
239239 Value *materializeStack (unsigned int &, ValueDFSStack &, Value *);
240240 bool stackIsInScope (const ValueDFSStack &, const ValueDFS &) const ;
You can’t perform that action at this time.
0 commit comments