Fixed misuse of pointer within SimulVertex::addPredecessor()

llvm-svn: 45551
This commit is contained in:
Ted Kremenek 2008-01-03 22:09:27 +00:00
parent 9d375282cf
commit fde239df06
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
};