mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
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:
parent
ada1618afa
commit
cddc86f27c
@ -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 )
|
||||
|
Loading…
Reference in New Issue
Block a user