================ @@ -100,12 +100,13 @@ template <bool Signed> class IntegralAP final { } static IntegralAP from(const Boolean &B) { assert(false); - return IntegralAP::zero(); + return IntegralAP::zero(1); } - static IntegralAP zero() { - assert(false); - return IntegralAP(0); + static IntegralAP zero(int32_t BitWidth) { + APSInt V = + APSInt(APInt(BitWidth, static_cast<int64_t>(0), Signed), !Signed); ---------------- AaronBallman wrote:
```suggestion APSInt(APInt(BitWidth, 0LL, Signed), !Signed); ``` we don't even need the `LL` do we? https://github.com/llvm/llvm-project/pull/68081 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits