remove the second argument to cloneInto

llvm-svn: 20754
This commit is contained in:
Chris Lattner
2005-03-22 00:21:05 +00:00
parent d22030f8db
commit 19944fade3
5 changed files with 14 additions and 19 deletions

View File

@@ -130,8 +130,7 @@ bool Steens::runOnModule(Module &M) {
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
if (!I->isExternal()) {
DSGraph::NodeMapTy NodeMap;
ResultGraph->cloneInto(LDS.getDSGraph(*I), ResultGraph->getScalarMap(),
RetValMap, NodeMap, 0);
ResultGraph->cloneInto(LDS.getDSGraph(*I), RetValMap, NodeMap, 0);
}
ResultGraph->removeTriviallyDeadNodes();