diff options
author | Anders Carlsson <andersca@mac.com> | 2009-08-08 21:45:14 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-08-08 21:45:14 +0000 |
commit | 3b2e16b3d25f6b311dba2871e2a566c96238c3d2 (patch) | |
tree | b832959ec493597653c74b993b8347d77452a060 /lib/CodeGen/CGDecl.cpp | |
parent | 824957643238ea1712b966deee9c65043ac6ffea (diff) |
Refactor some code and implement support for global destructors for static variables.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDecl.cpp')
-rw-r--r-- | lib/CodeGen/CGDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGDecl.cpp b/lib/CodeGen/CGDecl.cpp index 477cf52aad..d3b7db089b 100644 --- a/lib/CodeGen/CGDecl.cpp +++ b/lib/CodeGen/CGDecl.cpp @@ -140,7 +140,7 @@ void CodeGenFunction::EmitStaticBlockVarDecl(const VarDecl &D) { if (!getContext().getLangOptions().CPlusPlus) CGM.ErrorUnsupported(D.getInit(), "constant l-value expression"); else - GenerateStaticCXXBlockVarDeclInit(D, GV); + EmitStaticCXXBlockVarDeclInit(D, GV); } else { // The initializer may differ in type from the global. Rewrite // the global to match the initializer. (We have to do this |