[PATCH] D31523: [APInt] Add a public typedef for the internal type of APInt use it instead of integerPart. Make APINT_BITS_PER_WORD and APINT_WORD_SIZE public.
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 31 07:42:11 PDT 2017
RKSimon added inline comments.
================
Comment at: lib/Support/APFloat.cpp:41
+typedef APInt::WordType integerPart;
+const unsigned int integerPartWidth = APInt::APINT_BITS_PER_WORD;
+
----------------
If these are temporary, add a TODO?
https://reviews.llvm.org/D31523
More information about the llvm-commits
mailing list