diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2013-01-03 00:39:26 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2013-01-03 00:39:26 +0000 |
commit | 89e19b43b81a6b5d092a81d2ebf6ec9a4097a48d (patch) | |
tree | d3a7e2f82413cd9e7535464b531db599618b8bc6 /lib/CodeGen/CGExprConstant.cpp | |
parent | 344c77aac25e5d960aced3f45fbaa09853383f6d (diff) |
Don't assert/crash on reference variables in lambdas bound to a
static local variable from the parent scope. PR14773.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprConstant.cpp')
-rw-r--r-- | lib/CodeGen/CGExprConstant.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/CodeGen/CGExprConstant.cpp b/lib/CodeGen/CGExprConstant.cpp index f5bf2a2fe7..7a604013b7 100644 --- a/lib/CodeGen/CGExprConstant.cpp +++ b/lib/CodeGen/CGExprConstant.cpp @@ -905,10 +905,8 @@ public: if (!VD->hasLocalStorage()) { if (VD->isFileVarDecl() || VD->hasExternalStorage()) return CGM.GetAddrOfGlobalVar(VD); - else if (VD->isLocalVarDecl()) { - assert(CGF && "Can't access static local vars without CGF"); - return CGF->GetAddrOfStaticLocalVar(VD); - } + else if (VD->isLocalVarDecl()) + return CGM.getStaticLocalDeclAddress(VD); } } return 0; |