[v1.05][ARM] Fix compile warning in SVE cntb

This commit is contained in:
Dr-Noob
2024-08-10 11:23:13 +01:00
parent 2788e6831e
commit f63178b41c

View File

@@ -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__)