]> granicus.if.org Git - llvm/commitdiff
[llvm-readobj] Fix ambiguous call to the `printNumber`
authorSimon Atanasyan <simon@atanasyan.com>
Thu, 21 Dec 2017 10:46:20 +0000 (10:46 +0000)
committerSimon Atanasyan <simon@atanasyan.com>
Thu, 21 Dec 2017 10:46:20 +0000 (10:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@321254 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-readobj/ELFDumper.cpp

index 053d93df233f06d9241e59924aa1014a8b99f21a..f2b9369043931548a7f8290552822590578bdf98 100644 (file)
@@ -4127,7 +4127,7 @@ void LLVMStyle<ELFT>::printMipsGOT(const MipsGOTParser<ELFT> &Parser) {
   }
 
   W.printNumber("Number of TLS and multi-GOT entries",
-                Parser.getOtherEntries().size());
+                uint64_t(Parser.getOtherEntries().size()));
 }
 
 template <class ELFT>