mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Fix a compiler warning on hosts where uint64_t isn't unsigned long long.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70548 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cc2ad058b3
commit
fbccdef106
@ -563,7 +563,7 @@ static int AnalyzeBitcode() {
|
|||||||
const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
|
const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
|
||||||
|
|
||||||
fprintf(stderr, "\t\t%7d %9llu ", RecStats.NumInstances,
|
fprintf(stderr, "\t\t%7d %9llu ", RecStats.NumInstances,
|
||||||
RecStats.TotalBits);
|
(unsigned long long)RecStats.TotalBits);
|
||||||
|
|
||||||
if (RecStats.NumAbbrev)
|
if (RecStats.NumAbbrev)
|
||||||
fprintf(stderr, "%7.2f ",
|
fprintf(stderr, "%7.2f ",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user