Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change TARGET_ARM64 => HOST_ARM64
  • Loading branch information
kunalspathak committed Jul 1, 2022
commit 71be17ced8ab6124c6d5c3d84fb651a2b32fb677
2 changes: 1 addition & 1 deletion src/coreclr/debug/createdump/datatarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "createdump.h"

#if defined(TARGET_ARM64)
#if defined(HOST_ARM64)
// Flag to check if atomics feature is available on
// the machine
bool g_arm64_atomics_present = false;
Expand Down
4 changes: 2 additions & 2 deletions src/coreclr/pal/inc/pal.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ extern "C" {
// On Unix systems, NATIVE_LIBRARY_HANDLE type represents a library handle not registered with the PAL.
typedef PVOID NATIVE_LIBRARY_HANDLE;

#if defined(TARGET_ARM64)
#if defined(HOST_ARM64)
// Flag to check if atomics feature is available on
// the machine
extern bool g_arm64_atomics_present;
Expand Down Expand Up @@ -3472,7 +3472,7 @@ FORCEINLINE void PAL_ArmInterlockedOperationBarrier()
#endif
}

#if defined(TARGET_ARM64)
#if defined(HOST_ARM64)

#define Define_InterlockMethod(RETURN_TYPE, METHOD_DECL, METHOD_INVOC, INTRINSIC_NAME) \
__attribute__((target("lse"))) \
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/pal/src/init/pal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ extern "C" BOOL CRTInitStdStreams( void );

extern bool g_running_in_exe;

#if defined(TARGET_ARM64)
#if defined(HOST_ARM64)
// Flag to check if atomics feature is available on
// the machine
bool g_arm64_atomics_present = false;
Expand Down