[PATCH] D48892: [libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISIBILITY

Louis Dionne via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 6 08:36:15 PDT 2018


ldionne added inline comments.


================
Comment at: libcxx/include/streambuf:261
 
-    _LIBCPP_ALWAYS_INLINE
+    _LIBCPP_INLINE_VISIBILITY
     void __pbump(streamsize __n) { __nout_ += __n; }
----------------
This one was marked as `_LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY` instead of `_LIBCPP_INLINE_VISIBILITY` in the previous revision. This is what caused the `check-cxx-abilist` test to fail.


Repository:
  rL LLVM

https://reviews.llvm.org/D48892





More information about the llvm-commits mailing list