@@ -471,11 +471,11 @@ static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
471
471
}
472
472
473
473
static void PrintSize (double Bits) {
474
- fprintf (stderr, " %.2f/%.2fB/%lluW " , Bits, Bits/8 ,(unsigned long long ) Bits/32 );
474
+ fprintf (stderr, " %.2f/%.2fB/%luW " , Bits, Bits/8 ,(unsigned long )( Bits/32 ) );
475
475
}
476
476
static void PrintSize (uint64_t Bits) {
477
- fprintf (stderr, " %llub /%.2fB/%lluW " , (unsigned long long )Bits,
478
- (double )Bits/8 , (unsigned long long ) Bits/32 );
477
+ fprintf (stderr, " %lub /%.2fB/%luW " , (unsigned long )Bits,
478
+ (double )Bits/8 , (unsigned long )( Bits/32 ) );
479
479
}
480
480
481
481
@@ -601,8 +601,8 @@ static int AnalyzeBitcode() {
601
601
for (unsigned i = 0 , e = FreqPairs.size (); i != e; ++i) {
602
602
const PerRecordStats &RecStats = Stats.CodeFreq [FreqPairs[i].second ];
603
603
604
- fprintf (stderr, " \t\t %7d %9llu " , RecStats.NumInstances ,
605
- (unsigned long long )RecStats.TotalBits );
604
+ fprintf (stderr, " \t\t %7d %9lu " , RecStats.NumInstances ,
605
+ (unsigned long )RecStats.TotalBits );
606
606
607
607
if (RecStats.NumAbbrev )
608
608
fprintf (stderr, " %7.2f " ,
0 commit comments