From f1c97eb52e55d2d1340a0345ed91e345fddcb65d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 21 Apr 2009 04:41:23 +0000 Subject: [PATCH] use of predefined identifiers like __func__ at global scope warn in sema, but crashed codegen. Fix this to report the name of the llvm function. This fixes rdar://6808051 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69658 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGExpr.cpp | 2 +- test/CodeGen/blocks.c | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index 906a1e2cd6..3ca625cc72 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -753,7 +753,7 @@ LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) { } std::string FunctionName; - if(const FunctionDecl *FD = dyn_cast(CurFuncDecl)) { + if (const FunctionDecl *FD = dyn_cast_or_null(CurFuncDecl)) { FunctionName = CGM.getMangledName(FD); } else { // Just get the mangled name; skipping the asm prefix if it diff --git a/test/CodeGen/blocks.c b/test/CodeGen/blocks.c index 4203fce051..c7fe3a91d2 100644 --- a/test/CodeGen/blocks.c +++ b/test/CodeGen/blocks.c @@ -17,4 +17,10 @@ struct s0 f2(struct s0 a0) { return ^(struct s0 a1){ return a1; }(a0); } +// This should not crash: rdar://6808051 +void *P = ^{ + void *Q = __func__; +}; + + // RUN: true -- 2.50.1