Skip to content

Commit

Permalink
[v1.05][ARM] Fix compile warning in SVE cntb
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Noob committed Aug 10, 2024
1 parent 2788e68 commit f63178b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arm/midr.c
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ void print_debug(struct cpuInfo* cpu) {
}

if (cpu->feat->SVE || cpu->feat->SVE2) {
printf("- cntb: %lld\n", cpu->feat->cntb);
printf("- cntb: %d\n", (int) cpu->feat->cntb);
}

#if defined(__APPLE__) || defined(__MACH__)
Expand Down

0 comments on commit f63178b

Please sign in to comment.