[PATCH] D50876: Clean up newly created <bit> header
Louis Dionne via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 17 06:46:25 PDT 2018
ldionne accepted this revision.
ldionne added a comment.
This revision is now accepted and ready to land.
LGTM with the `__clz` you missed.
================
Comment at: include/bit:61
+inline _LIBCPP_INLINE_VISIBILITY
+int __popcount(unsigned __x) { return __builtin_popcount (__x); }
+
----------------
Funny spacing between `__builtin_popcount` and `(__x)`
https://reviews.llvm.org/D50876
More information about the cfe-commits
mailing list