[PATCH] D41843: [libcxx] implement <experimental/simd> where expressions.

Zhihao Yuan via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Jan 18 16:43:37 PST 2018


lichray added inline comments.


================
Comment at: libcxx/include/experimental/simd:2330
+      simd<_Tp, _Abi>& __v) noexcept {
+  return where_expression<simd_mask<_Tp, _Abi>, simd<_Tp, _Abi>>(__m, __v);
+}
----------------
style: `return {__m, __v};`?


https://reviews.llvm.org/D41843





More information about the cfe-commits mailing list