[clang] [clang][Interp] Add IntegralAP for arbitrary-precision integers (PR #65844)
Timm Baeder via cfe-commits
cfe-commits at lists.llvm.org
Sat Sep 9 07:21:29 PDT 2023
================
@@ -117,7 +118,8 @@ std::optional<PrimType> Context::classify(QualType T) const {
case 8:
return PT_Uint8;
default:
- return std::nullopt;
+ return PT_IntAP;
+ // return std::nullopt;
----------------
tbaederr wrote:
Yes. There are a few such comments left in the patch I think.
https://github.com/llvm/llvm-project/pull/65844
More information about the cfe-commits
mailing list