[libcxxabi] [llvm] Fix C++ demangling for _BitInt type (PR #143466)
Louis Dionne via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 12 08:18:42 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
----------------
ldionne wrote:
Perhaps naive question, but by `FE` do you mean the Front-end? If so, it's worth spelling to avoid confusion.
https://github.com/llvm/llvm-project/pull/143466
More information about the llvm-commits
mailing list