diff options
author | Mike Stump <mrs@apple.com> | 2009-12-07 23:38:24 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-12-07 23:38:24 +0000 |
commit | cce3d4f9812182ed4e551b7cf0fc86576be8d9c5 (patch) | |
tree | 8d638f713c292cd936b5484fb06e428e172fe471 /lib/CodeGen/CodeGenFunction.cpp | |
parent | 812c15476c9dddb72a8fd48deb7ca86402664b94 (diff) |
Add codegen support for exception specifications. WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90817 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index d35c962112..78aa95686a 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/lib/CodeGen/CodeGenFunction.cpp @@ -131,6 +131,7 @@ void CodeGenFunction::FinishFunction(SourceLocation EndLoc) { } EmitFunctionEpilog(*CurFnInfo, ReturnValue); + EmitEndEHSpec(CurCodeDecl); // If someone did an indirect goto, emit the indirect goto block at the end of // the function. @@ -215,6 +216,7 @@ void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy, ReturnValue = CreateTempAlloca(ConvertType(RetTy), "retval"); } + EmitStartEHSpec(CurCodeDecl); EmitFunctionProlog(*CurFnInfo, CurFn, Args); // If any of the arguments have a variably modified type, make sure to |