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
This commit is contained in:
Reid Spencer 2004-07-25 21:44:54 +00:00
parent ada1618afa
commit cddc86f27c

View File

@ -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 )