lib/Object: Suppress warnings on gcc-4.3.4 cygwin

llvm-svn: 141485
This commit is contained in:
NAKAMURA Takumi 2011-10-08 11:22:53 +00:00
parent f995985eba
commit 648b2fafd8
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ Archive::Archive(MemoryBuffer *source, error_code &ec)
// Get the string table. It's the 3rd member.
child_iterator StrTable = begin_children();
child_iterator e = end_children();
for (int i = 0; StrTable != e && i < 2; ++StrTable, ++i);
for (int i = 0; StrTable != e && i < 2; ++StrTable, ++i) {}
// Check to see if there were 3 members, or the 3rd member wasn't named "//".
StringRef name;

View File

@ -640,7 +640,7 @@ error_code COFFObjectFile::getRelocationAdditionalInfo(DataRefImpl Rel,
error_code COFFObjectFile::getRelocationValueString(DataRefImpl Rel,
SmallVectorImpl<char> &Result) const {
const coff_relocation *reloc = toRel(Rel);
const coff_symbol *symb;
const coff_symbol *symb = 0;
if (error_code ec = getSymbol(reloc->SymbolTableIndex, symb)) return ec;
DataRefImpl sym;
::memset(&sym, 0, sizeof(sym));