stop using method.

llvm-svn: 20603
This commit is contained in:
Chris Lattner 2005-03-15 05:19:49 +00:00
parent bc18ef02ce
commit 6cb4559369
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ namespace {
// can be "used", instead of ones with bodies. // can be "used", instead of ones with bodies.
std::vector<Function*> NewFunctions; std::vector<Function*> NewFunctions;
Function *Last = &M.back(); // Figure out where the last real fn is... Function *Last = --M.end(); // Figure out where the last real fn is.
for (Module::iterator I = M.begin(); ; ++I) { for (Module::iterator I = M.begin(); ; ++I) {
if (&*I != Named) { if (&*I != Named) {