[PATCH] D69336: [BitVector] Define BitWord as uintptr_t
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 29 06:55:15 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rGba6e2cb54446: [BitVector] Define BitWord as uintptr_t (authored by RKSimon).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69336/new/
https://reviews.llvm.org/D69336
Files:
llvm/include/llvm/ADT/BitVector.h
Index: llvm/include/llvm/ADT/BitVector.h
===================================================================
--- llvm/include/llvm/ADT/BitVector.h
+++ llvm/include/llvm/ADT/BitVector.h
@@ -71,7 +71,7 @@
};
class BitVector {
- typedef unsigned long BitWord;
+ typedef uintptr_t BitWord;
enum { BITWORD_SIZE = (unsigned)sizeof(BitWord) * CHAR_BIT };
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69336.226894.patch
Type: text/x-patch
Size: 361 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191029/9e30e811/attachment.bin>
More information about the llvm-commits
mailing list