We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9e42ab commit 90b7eb8Copy full SHA for 90b7eb8
src/inc/std_types.h
@@ -42,6 +42,8 @@ typedef uint32 CoreIdType;
42
#define CAST_UINT32_TO_ADDR(uint32_data) ( (void*)((uint32)(uint32_data)) )
43
#elif __x86_64__
44
#define CAST_UINT32_TO_ADDR(uint32_data) ( (void*)((uint64)(uint32_data)) )
45
+#elif __arm64
46
+#define CAST_UINT32_TO_ADDR(uint32_data) ( (void*)((uint64)(uint32_data)) )
47
#else
48
#error "unknown arch."
49
#endif
0 commit comments