diff options
author | Akira Hatanaka <ahatanaka@apple.com> | 2018-04-27 04:21:51 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@apple.com> | 2018-04-27 04:21:51 +0000 |
commit | e712374496147f61ff701ee46bdd9932366521c6 (patch) | |
tree | ad3b905195500be4f8400e38a45b6977533793aa /clang/lib/CodeGen/CGDecl.cpp | |
parent | fa7fd13cf8b33f879c2f3b80dc7e91ac0cace0bd (diff) | |
download | llvm-e712374496147f61ff701ee46bdd9932366521c6.zip llvm-e712374496147f61ff701ee46bdd9932366521c6.tar.gz llvm-e712374496147f61ff701ee46bdd9932366521c6.tar.bz2 |
[CodeGen] Avoid destructing a callee-destructued struct type in a
function if a function delegates to another function.
Fix a bug introduced in r328731, which caused a struct with ObjC __weak
fields that was passed to a function to be destructed twice, once in the
callee function and once in another function the callee function
delegates to. To prevent this, keep track of the callee-destructed
structs passed to a function and disable their cleanups at the point of
the call to the delegated function.
rdar://problem/39194693
Differential Revision: https://reviews.llvm.org/D45382
llvm-svn: 331016
Diffstat (limited to 'clang/lib/CodeGen/CGDecl.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDecl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp index c9b80e3..75251df 100644 --- a/clang/lib/CodeGen/CGDecl.cpp +++ b/clang/lib/CodeGen/CGDecl.cpp @@ -1962,6 +1962,8 @@ void CodeGenFunction::EmitParmDecl(const VarDecl &D, ParamValue Arg, DtorKind == QualType::DK_nontrivial_c_struct) && "unexpected destructor type"); pushDestroy(DtorKind, DeclPtr, Ty); + CalleeDestructedParamCleanups[cast<ParmVarDecl>(&D)] = + EHStack.stable_begin(); } } } else { |