[v1.05][ARM] Fix SVE cntb datatype

This commit is contained in:
Dr-Noob
2024-08-10 11:16:22 +01:00
parent 146f2a13aa
commit 2788e6831e
2 changed files with 2 additions and 2 deletions

View File

@@ -514,7 +514,7 @@ void print_debug(struct cpuInfo* cpu) {
}
if (cpu->feat->SVE || cpu->feat->SVE2) {
printf("- cntb: %ld\n", cpu->feat->cntb);
printf("- cntb: %lld\n", cpu->feat->cntb);
}
#if defined(__APPLE__) || defined(__MACH__)

View File

@@ -126,7 +126,7 @@ struct features {
bool CRC32;
bool SVE;
bool SVE2;
uint32_t cntb;
uint64_t cntb;
#endif
};