[libcxx-commits] [libcxxabi] [llvm] Enable demangling of `cp` expression production (PR #114882)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Dec 4 15:01:05 PST 2024


================
@@ -30371,24 +30372,22 @@ void test_invalid_cases()
     assert(!passed && "demangle did not fail");
 }
 
-const char *xfail_cases[] = {
-    // FIXME: Why does clang generate the "cp" expr?
-    "_ZN5test11bIsEEDTcp3foocvT__EEES1_",
+const char *const xfail_cases[] = {
----------------
ldionne wrote:

We could use a `std::array` here and simplify the for loops below, maybe?

https://github.com/llvm/llvm-project/pull/114882


More information about the libcxx-commits mailing list