[clang] Fix function (PR #65958)

via cfe-commits cfe-commits at lists.llvm.org
Mon Sep 11 06:00:17 PDT 2023


llvmbot wrote:

@llvm/pr-subscribers-clang

<details>
<summary>Changes</summary>

None
--
Full diff: https://github.com/llvm/llvm-project/pull/65958.diff

1 Files Affected:

- (modified) clang/lib/AST/Expr.cpp (+1) 


<pre>
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp
index 4f3837371b3fc5..358a9fcd9e8c7e 100644
--- a/clang/lib/AST/Expr.cpp
+++ b/clang/lib/AST/Expr.cpp
@@ -701,6 +701,7 @@ PredefinedExpr *PredefinedExpr::CreateEmpty(const ASTContext &Ctx,
 }
 
 StringRef PredefinedExpr::getIdentKindName(PredefinedExpr::IdentKind IK) {
+  printf("Enter getIdentKindName\n");
   switch (IK) {
   case Func:
     return "__func__";
</pre>

</details>

https://github.com/llvm/llvm-project/pull/65958


More information about the cfe-commits mailing list