mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-18 03:37:31 +00:00
Don't pass a 32 bit value to "%08" PRIx64.
Should fix the arm bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240439 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fbd746614d
commit
8bb10c6ad8
@ -1148,10 +1148,10 @@ void llvm::PrintSymbolTable(const ObjectFile *o) {
|
||||
}
|
||||
|
||||
outs() << '\t';
|
||||
if (Common)
|
||||
outs() << format("%08" PRIx64 " ", Symbol.getAlignment());
|
||||
else if (isa<ELFObjectFileBase>(o))
|
||||
outs() << format("%08" PRIx64 " ", Symbol.getSize());
|
||||
if (Common || isa<ELFObjectFileBase>(o)) {
|
||||
uint64_t Val = Common ? Symbol.getAlignment() : Symbol.getSize();
|
||||
outs() << format("\t %08" PRIx64 " ", Val);
|
||||
}
|
||||
|
||||
if (Hidden) {
|
||||
outs() << ".hidden ";
|
||||
|
Loading…
x
Reference in New Issue
Block a user