[libcxxabi] [llvm] Fix C++ demangling for _BitInt type (PR #143466)

Larry Meadows via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 18 14:06:13 PDT 2025


================
@@ -4468,7 +4468,9 @@ Node *AbstractManglingParser<Derived, Alloc>::parseType() {
         return nullptr;
       if (!consumeIf('_'))
         return nullptr;
-      return make<BitIntType>(Size, Signed);
+      // The FE expects this to be available for Substitution
----------------
lfmeadow wrote:

Yes, I meant front end. I will spell it out.

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


More information about the llvm-commits mailing list