[clang] [clang][Interp] Add IntegralAP for arbitrary-precision integers (PR #65844)
Timm Baeder via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 26 06:41:19 PDT 2023
Timm =?utf-8?q?Bäder?= <tbaeder at redhat.com>,
Timm =?utf-8?q?Bäder?= <tbaeder at redhat.com>,
Timm =?utf-8?q?Bäder?= <tbaeder at redhat.com>
Message-ID:
In-Reply-To: <llvm/llvm-project/pull/65844/clang at github.com>
================
@@ -1596,6 +1599,9 @@ bool ByteCodeExprGen<Emitter>::visitZeroInitializer(QualType QT,
return this->emitZeroSint64(E);
case PT_Uint64:
return this->emitZeroUint64(E);
+ case PT_IntAP:
+ case PT_IntAPS:
+ assert(false);
----------------
tbaederr wrote:
All the `assert(false)` in this patch are just placeholders for things I need to implement in later patches. I'm trying to keep the patches smaller so they are easier to review.
https://github.com/llvm/llvm-project/pull/65844
More information about the cfe-commits
mailing list