[clang] [clang][Interp] Add IntegralAP for arbitrary-precision integers (PR #65844)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Sep 9 06:48:14 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;
----------------
yronglin wrote:
Can this comment be remove?
https://github.com/llvm/llvm-project/pull/65844
More information about the cfe-commits
mailing list