We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6eb62d + 90b7eb8 commit 6775046Copy full SHA for 6775046
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