diff options
author | Kristina Brooks <kristina@nym.hush.com> | 2018-11-10 08:04:38 +0000 |
---|---|---|
committer | Kristina Brooks <kristina@nym.hush.com> | 2018-11-10 08:04:38 +0000 |
commit | 825f9d3e268ce39d057f6d3772a23de6fe407f0d (patch) | |
tree | a5c8ae942ae91e18bb63a3f423e44295c98f3c9e /clang/lib/CodeGen/CGDeclCXX.cpp | |
parent | 1333b57f374fd487188ed7956ecd626ddc5eaf60 (diff) | |
download | bcm5719-llvm-825f9d3e268ce39d057f6d3772a23de6fe407f0d.tar.gz bcm5719-llvm-825f9d3e268ce39d057f6d3772a23de6fe407f0d.zip |
[clang]: Fix misapplied patch in 346582.
llvm-svn: 346583
Diffstat (limited to 'clang/lib/CodeGen/CGDeclCXX.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDeclCXX.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGDeclCXX.cpp b/clang/lib/CodeGen/CGDeclCXX.cpp index ac229d033a5..4a025c27652 100644 --- a/clang/lib/CodeGen/CGDeclCXX.cpp +++ b/clang/lib/CodeGen/CGDeclCXX.cpp @@ -63,7 +63,7 @@ static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D, /// Emit code to cause the destruction of the given variable with /// static storage duration. static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D, - ConstantAddress addr) { + ConstantAddress Addr) { CodeGenModule &CGM = CGF.CGM; // FIXME: __attribute__((cleanup)) ? |