================ @@ -5213,6 +5219,11 @@ class CoawaitExpr : public CoroutineSuspendExpr { bool isImplicit() const { return CoawaitBits.IsImplicit; } void setIsImplicit(bool value = true) { CoawaitBits.IsImplicit = value; } + bool isInplaceCall() const { return CoawaitBits.IsInplaceCall; } + void setIsInplaceCall(bool value = true) { + CoawaitBits.IsInplaceCall = value; + } + ---------------- yuxuanchen1997 wrote:
Should probably decide on getting rid of this or the one on `CallExpr`. https://github.com/llvm/llvm-project/pull/94693 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits