Merge pull request #772 from brad0/arm64_build

Use proper symbol name checking for arm64
This commit is contained in:
thor2016 2024-12-08 09:23:39 -05:00 committed by GitHub
commit fe65681012
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
static uint64_t rdtsc()
{
#if defined(__arm64__) || defined(__arm__)
#if defined(__aarch64__) || defined(__arm__)
// SPDX-License-Identifier: GPL-2.0
uint64_t val = 0;