mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-19 18:24:05 +00:00
Fix a compiler warning on hosts where uint64_t isn't unsigned long long.
llvm-svn: 70548
This commit is contained in:
parent
a55fce998e
commit
908d546da3
@ -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…
x
Reference in New Issue
Block a user