================
@@ -8533,7 +8533,9 @@ class ExprEvaluatorBase
}
bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) {
- CCEDiag(E, diag::note_constexpr_invalid_cast)
+ bool IsPtrToInt = E->getCastKind() == CK_PointerToIntegral;
+ CCEDiag(E, IsPtrToInt ? diag::note_constexpr_invalid_cast_ptrtoint
+ : diag::note_constexpr_invalid_cast)
----------------
eleviant wrote:
> I'm not quite sure I follow this,
Just FYI we get `note_constexpr_null_subobject` when we try to calculate
`&((type*)0)->member`
https://github.com/llvm/llvm-project/pull/197005
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits