Skip to content

Commit

Permalink
Use proper symbol name checking for arm64
Browse files Browse the repository at this point in the history
The proper symbol for checking for 64-bit ARM is __aarch64__
  • Loading branch information
brad0 committed Dec 8, 2024
1 parent e315b06 commit f803006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/timeStamp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit f803006

Please sign in to comment.