================ @@ -182,6 +182,17 @@ struct TypeInfoChars { } }; +// Interface that allows constant evaluator to mutate AST. +// Sema is the only entity that can implement this. +struct EvalASTMutator { + virtual ~EvalASTMutator() = default; + + virtual void + InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, + FunctionDecl *Function, bool Recursive, + bool DefinitionRequired, bool AtEndOfTU) = 0; ---------------- Endilll wrote:
Fixed https://github.com/llvm/llvm-project/pull/115168 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits