[clang] [clang][Interp] Add IntegralAP for arbitrary-precision integers (PR #65844)
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 26 06:35:35 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);
----------------
erichkeane wrote:
Should this be an `llvm_unreachable`?
https://github.com/llvm/llvm-project/pull/65844
More information about the cfe-commits
mailing list