mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +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];
|
||||
|
||||
fprintf(stderr, "\t\t%7d %9llu ", RecStats.NumInstances,
|
||||
RecStats.TotalBits);
|
||||
(unsigned long long)RecStats.TotalBits);
|
||||
|
||||
if (RecStats.NumAbbrev)
|
||||
fprintf(stderr, "%7.2f ",
|
||||
|
Loading…
Reference in New Issue
Block a user