mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-12 14:41:05 +00:00
Fix build broken by r323641
The call to ScopedPrinter::printNumber with size_t argument was ambiguous (I think) on 32-bit builds. Explicitly cast to a 64-bit int to avoid this. llvm-svn: 323642
This commit is contained in:
parent
e7b8d7b648
commit
c48df10be9
@ -201,7 +201,7 @@ LLVM_DUMP_METHOD void AppleAcceleratorTable::dump(raw_ostream &OS) const {
|
||||
Hdr.dump(W);
|
||||
|
||||
W.printNumber("DIE offset base", HdrData.DIEOffsetBase);
|
||||
W.printNumber("Number of atoms", HdrData.Atoms.size());
|
||||
W.printNumber("Number of atoms", uint64_t(HdrData.Atoms.size()));
|
||||
SmallVector<DWARFFormValue, 3> AtomForms;
|
||||
{
|
||||
ListScope AtomsScope(W, "Atoms");
|
||||
|
Loading…
x
Reference in New Issue
Block a user