[PATCH] D34191: completely rewrite the llvm-pdbutil "raw" output style

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 15 10:50:43 PDT 2017


rnk accepted this revision.
rnk added a comment.
This revision is now accepted and ready to land.

lgtm



================
Comment at: llvm/include/llvm/Support/MathExtras.h:530
+/// Returns the number of digits in the given integer.
+inline int NumDigits(uint64_t N) {
+  if (N < 10ULL)
----------------
`numBaseTenDigits`?


https://reviews.llvm.org/D34191





More information about the llvm-commits mailing list