From: Reid Spencer Date: Sun, 25 Jul 2004 21:44:54 +0000 (+0000) Subject: Avoid use of size(), which counts, in favor of other mechanisms. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cddc86f27c822af960fc8d344a86a63fce6eab76;p=oota-llvm.git Avoid use of size(), which counts, in favor of other mechanisms. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15221 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 4d055e786ab..df5cabc7569 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -732,14 +732,15 @@ void AssemblyWriter::printModule(const Module *M) { case Module::Pointer64: Out << "target pointersize = 64\n"; break; case Module::AnyPointerSize: break; } - if (M->getTargetTriple().size() > 0) + if (!M->getTargetTriple().empty()) Out << "target triple = \"" << M->getTargetTriple() << "\"\n"; // Loop over the dependent libraries and emit them - if (M->lib_size() > 0) { + Module::lib_iterator LI= M->lib_begin(); + Module::lib_iterator LE= M->lib_end(); + if (LI != LE) { Out << "deplibs = [\n"; - for (Module::lib_iterator LI = M->lib_begin(), LE = M->lib_end(); - LI != LE; ) { + while ( LI != LE ) { Out << "\"" << *LI << "\""; ++LI; if ( LI != LE )