Skip to content

Commit

Permalink
Add FXN_PLATFORM_WINDOWS_ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
olokobayusuf committed May 8, 2024
1 parent 95403b0 commit e3c42a2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion include/Function/cxx/Dialect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@
@constant FXN_PLATFORM_WINDOWS_X64
Windows x86_64 platform.
@constant FXN_PLATFORM_WINDOWS_ARM64
Windows arm64 platform.
@constant FXN_PLATFORM_WINDOWS
Windows platform across all architectures.
*/
Expand All @@ -98,7 +101,8 @@ enum FXNPlatform {
FXN_PLATFORM_WASM64 = 1 << 12,
FXN_PLATFORM_WASM = FXN_PLATFORM_WASM32 | FXN_PLATFORM_WASM64,
FXN_PLATFORM_WINDOWS_X64 = 1 << 10,
FXN_PLATFORM_WINDOWS = FXN_PLATFORM_WINDOWS_X64,
FXN_PLATFORM_WINDOWS_ARM64 = 1 << 11,
FXN_PLATFORM_WINDOWS = FXN_PLATFORM_WINDOWS_X64 | FXN_PLATFORM_WINDOWS_ARM64,
};
typedef enum FXNPlatform FXNPlatform;

Expand Down

0 comments on commit e3c42a2

Please sign in to comment.