diff options
author | Mike Stump <mrs@apple.com> | 2009-12-03 03:40:14 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-12-03 03:40:14 +0000 |
commit | 2842b4cf863c4a48c6514c7f7d2fe912444415ba (patch) | |
tree | bc53cf7ec31078a1663e3238a67e49012c7103c0 /clang/lib/CodeGen/CGException.cpp | |
parent | dabfa3cd8be6e2881f6a46e2b230f4356c2e5527 (diff) | |
download | bcm5719-llvm-2842b4cf863c4a48c6514c7f7d2fe912444415ba.tar.gz bcm5719-llvm-2842b4cf863c4a48c6514c7f7d2fe912444415ba.zip |
Reflow.
llvm-svn: 90407
Diffstat (limited to 'clang/lib/CodeGen/CGException.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGException.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp index d3d26ca9503..1ceb2542ae5 100644 --- a/clang/lib/CodeGen/CGException.cpp +++ b/clang/lib/CodeGen/CGException.cpp @@ -390,7 +390,9 @@ void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) { // FIXME: objects with ctors, references Builder.CreateStore(ExcObject, GetAddrOfLocalVar(CatchParam)); #else - // FIXME: we need to do this sooner so that the EH region for the cleanup doesn't start until after the ctor completes, use a decl init? + // FIXME: we need to do this sooner so that the EH region for the + // cleanup doesn't start until after the ctor completes, use a decl + // init? CopyObject(*this, CatchParam->getType().getNonReferenceType(), ExcObject, GetAddrOfLocalVar(CatchParam)); #endif |