Skip to content

Commit

Permalink
support M1 aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
heroims committed Apr 5, 2022
1 parent 80fe8f9 commit 1e71a28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/include/llvm/Transforms/Obfuscation/CryptoUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ extern ManagedStatic<CryptoUtils> cryptoutils;
#endif
#define ENDIAN_64BITWORD

#elif defined(__sparc)
#elif defined(__sparc) || defined(__aarch64__)

#ifndef ENDIAN_BIG
#define ENDIAN_BIG
#endif
#if defined(__arch64__)
#if defined(__arch64__) || defined(__aarch64__)
#define ENDIAN_64BITWORD
#else
#define ENDIAN_32BITWORD
Expand Down

1 comment on commit 1e71a28

@heroims
Copy link
Owner Author

@heroims heroims commented on 1e71a28 Apr 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#12

Please sign in to comment.