From: Simon Atanasyan Date: Thu, 21 Dec 2017 10:46:20 +0000 (+0000) Subject: [llvm-readobj] Fix ambiguous call to the `printNumber` X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f725c23e234df07387bf0ec0cf98c4a77c24790d;p=llvm [llvm-readobj] Fix ambiguous call to the `printNumber` git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@321254 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-readobj/ELFDumper.cpp b/tools/llvm-readobj/ELFDumper.cpp index 053d93df233..f2b93690439 100644 --- a/tools/llvm-readobj/ELFDumper.cpp +++ b/tools/llvm-readobj/ELFDumper.cpp @@ -4127,7 +4127,7 @@ void LLVMStyle::printMipsGOT(const MipsGOTParser &Parser) { } W.printNumber("Number of TLS and multi-GOT entries", - Parser.getOtherEntries().size()); + uint64_t(Parser.getOtherEntries().size())); } template