forked from OSchip/llvm-project
Fixed misuse of pointer within SimulVertex::addPredecessor()
llvm-svn: 45551
This commit is contained in:
parent
9d375282cf
commit
fde239df06
|
@ -95,7 +95,7 @@ public:
|
|||
// Manipulation of successors/predecessors.
|
||||
void addPredecessor(SimulVertex* V) {
|
||||
Preds.push_back(V);
|
||||
V.Succs.push_back(V);
|
||||
V->Succs.push_back(V);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue