diff options
author | Tanya Lattner <tonic@nondot.org> | 2003-08-28 17:17:59 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2003-08-28 17:17:59 +0000 |
commit | 190b7a86bac1b8157c6500facd82f01a17ec82fa (patch) | |
tree | 2ea16f8845e3d8b3c9c470fa0ac7e325825e18ed /llvm/lib/CodeGen/ModuloScheduling/ModuloSchedGraph.cpp | |
parent | 7efb18f49c7de6994ad13fe91225bb5156a67bd7 (diff) | |
download | bcm5719-llvm-190b7a86bac1b8157c6500facd82f01a17ec82fa.tar.gz bcm5719-llvm-190b7a86bac1b8157c6500facd82f01a17ec82fa.zip |
Removing README
llvm-svn: 8180
Diffstat (limited to 'llvm/lib/CodeGen/ModuloScheduling/ModuloSchedGraph.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ModuloScheduling/ModuloSchedGraph.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ModuloScheduling/ModuloSchedGraph.cpp b/llvm/lib/CodeGen/ModuloScheduling/ModuloSchedGraph.cpp index 1bdbb1a9766..68b8ee39d52 100644 --- a/llvm/lib/CodeGen/ModuloScheduling/ModuloSchedGraph.cpp +++ b/llvm/lib/CodeGen/ModuloScheduling/ModuloSchedGraph.cpp @@ -71,8 +71,8 @@ void ModuloSchedGraph::addDepEdges() { //Create edge and set delay equal to node latency //FIXME: Is it safe to do this? ModuloSchedGraph::iterator Src = find(I); - SchedGraphEdge *trueDep = new SchedGraphEdge(&*Src->second ,&*Sink->second, &*I, - SchedGraphEdge::TrueDep, + SchedGraphEdge *trueDep = new SchedGraphEdge(&*Src->second ,&*Sink->second, + &*I, SchedGraphEdge::TrueDep, Src->second->getLatency()); //Determine the iteration difference //FIXME: Will this ever happen? |