================ @@ -2146,6 +2146,12 @@ class Sema final : public SemaBase { isConstantEvaluatedOverride; } + TypeAwareAllocationMode allocationModeInCurrentContext() const { + if (getLangOpts().TypeAwareAllocators && !isConstantEvaluatedContext()) + return TypeAwareAllocationMode::Yes; + return TypeAwareAllocationMode::No; + } ---------------- cor3ntin wrote:
Damn this is novel. Do we have any concerns with odr or such? (the alternative is to just modify the evaluation of new expression to ignore type information) https://github.com/llvm/llvm-project/pull/113510 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits