stop using method.

llvm-svn: 20603
This commit is contained in:
Chris Lattner 2005-03-15 05:19:49 +00:00
parent f0c2ba9aa1
commit 8cfd7fbf35

View File

@ -63,7 +63,7 @@ namespace {
// can be "used", instead of ones with bodies.
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) {
if (&*I != Named) {