[clang] [clang] Implement StmtPrinter for EmbedExpr (PR #135957)
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 16 06:48:22 PDT 2025
================
@@ -1284,7 +1284,11 @@ void StmtPrinter::VisitSourceLocExpr(SourceLocExpr *Node) {
}
void StmtPrinter::VisitEmbedExpr(EmbedExpr *Node) {
- llvm::report_fatal_error("Not implemented");
+ // Embed parameters are not reflected in the AST, so there is no way to print
----------------
AaronBallman wrote:
```suggestion
// FIXME: Embed parameters are not reflected in the AST, so there is no way to print
```
https://github.com/llvm/llvm-project/pull/135957
More information about the cfe-commits
mailing list