diff options
author | John McCall <rjmccall@apple.com> | 2011-08-25 20:40:09 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-08-25 20:40:09 +0000 |
commit | 8d6fc9583de6627e4ae5fd7a93e2158516faeba4 (patch) | |
tree | c72068eed5d1cf013e29a5fde288fafee00a2977 /clang/lib/CodeGen/CGException.cpp | |
parent | 7aecbc7661943f398a098b551bfe97560299a771 (diff) | |
download | bcm5719-llvm-8d6fc9583de6627e4ae5fd7a93e2158516faeba4.tar.gz bcm5719-llvm-8d6fc9583de6627e4ae5fd7a93e2158516faeba4.zip |
Use stronger typing for the flags on AggValueSlot and require
creators to tell us whether something needs GC barriers.
No functionality change.
llvm-svn: 138581
Diffstat (limited to 'clang/lib/CodeGen/CGException.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGException.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp index 61c1739eab7..263ac63ccc5 100644 --- a/clang/lib/CodeGen/CGException.cpp +++ b/clang/lib/CodeGen/CGException.cpp @@ -1032,8 +1032,9 @@ static void InitCatchParam(CodeGenFunction &CGF, CGF.EHStack.pushTerminate(); // Perform the copy construction. - CGF.EmitAggExpr(copyExpr, AggValueSlot::forAddr(ParamAddr, Qualifiers(), - false)); + CGF.EmitAggExpr(copyExpr, AggValueSlot::forAddr(ParamAddr, Qualifiers(), + AggValueSlot::IsNotDestructed, + AggValueSlot::DoesNotNeedGCBarriers)); // Leave the terminate scope. CGF.EHStack.popTerminate(); |