diff options
-rw-r--r-- | llvm/include/llvm/ADT/APInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h index 661276e0789..e38b7bc996c 100644 --- a/llvm/include/llvm/ADT/APInt.h +++ b/llvm/include/llvm/ADT/APInt.h @@ -72,7 +72,8 @@ public: /// This enum is just used to hold a constant we needed for APInt. enum { - APINT_BITS_PER_WORD = sizeof(uint64_t) * 8 + APINT_BITS_PER_WORD = sizeof(uint64_t) * 8, + APINT_WORD_SIZE = sizeof(uint64_t) }; /// Here one word's bitwidth equals to that of uint64_t. |