[libcxx-commits] [PATCH] D157145: [libc++][PSTL] Disable `-Wpass-failed`.

Konstantin Varlamov via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Aug 4 15:12:05 PDT 2023


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG1d340250a894: [libc++][PSTL] Disable `-Wpass-failed`. (authored by var-const).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D157145/new/

https://reviews.llvm.org/D157145

Files:
  libcxx/utils/libcxx/test/params.py


Index: libcxx/utils/libcxx/test/params.py
===================================================================
--- libcxx/utils/libcxx/test/params.py
+++ libcxx/utils/libcxx/test/params.py
@@ -54,6 +54,9 @@
 
     # TODO(philnik) This fails with the PSTL.
     "-Wno-unknown-pragmas",
+    # Don't fail compilation in case the compiler fails to perform the requested
+    # loop vectorization.
+    "-Wno-pass-failed",
 ]
 
 _allStandards = ["c++03", "c++11", "c++14", "c++17", "c++20", "c++23", "c++26"]


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D157145.547370.patch
Type: text/x-patch
Size: 504 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230804/aadfd224/attachment.bin>


More information about the libcxx-commits mailing list