[llvm-readobj] Fix compile error.

llvm-svn: 211151
This commit is contained in:
Simon Atanasyan 2014-06-18 09:23:55 +00:00
parent 93ed003276
commit 3f3206fc86

View File

@ -1140,7 +1140,7 @@ void MipsGOTParser<ELFT>::ParseGOT(const Elf_Shdr &GOTShdr) {
}
std::size_t SpecGotNum = GetGOTTotal(*GOT) - DtLocalGotNum - GlobalGotNum;
W.printNumber("Number of TLS and multi-GOT entries", SpecGotNum);
W.printNumber("Number of TLS and multi-GOT entries", uint64_t(SpecGotNum));
}
template <class ELFT>