================ @@ -570,13 +853,425 @@ mlir::Value CIRGenFunction::emitScalarExpr(const Expr *e) { return ScalarExprEmitter(*this, builder).Visit(const_cast<Expr *>(e)); } -[[maybe_unused]] static bool MustVisitNullValue(const Expr *e) { +mlir::Value CIRGenFunction::emitPromotedScalarExpr(const Expr *e, + QualType promotionType) { + if (!promotionType.isNull()) + return ScalarExprEmitter(*this, builder).emitPromoted(e, promotionType); + return ScalarExprEmitter(*this, builder).Visit(const_cast<Expr *>(e)); +} + +[[maybe_unused]] static bool mustVisitNullValue(const Expr *e) { // If a null pointer expression's type is the C++0x nullptr_t, then // it's not necessarily a simple constant and it must be evaluated // for its potential side effects. return e->getType()->isNullPtrType(); } +/// If \p E is a widened promoted integer, get its base (unpromoted) type. ---------------- andykaylor wrote:
```suggestion /// If \p e is a widened promoted integer, get its base (unpromoted) type. ``` https://github.com/llvm/llvm-project/pull/132420 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits