mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Fix the problem with llvm-objdump and -archive-headers in printing the archive header size field.
This problem showed up with the clang-cmake-armv7-a15-full bot. Thanks to Renato Golin for his help. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226936 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -749,7 +749,7 @@ static void printArchiveChild(Archive::Child &C, bool verbose,
|
||||
unsigned GID = C.getGID();
|
||||
outs() << format("%-3d ", GID);
|
||||
uint64_t Size = C.getRawSize();
|
||||
outs() << format("%5d ", Size);
|
||||
outs() << format("%5" PRId64, Size) << " ";
|
||||
|
||||
StringRef RawLastModified = C.getRawLastModified();
|
||||
if (verbose) {
|
||||
|
Reference in New Issue
Block a user