Use proper symbol name checking for arm64

The proper symbol for checking for 64-bit ARM is __aarch64__
This commit is contained in:
Brad Smith 2024-12-08 07:49:34 -05:00
parent e315b06ff3
commit f803006608
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;