diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-04-26 20:35:05 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-04-26 20:35:05 +0000 |
commit | d3a413d3b8eb39bcee5944bc545d9997c1abe492 (patch) | |
tree | 9c84c3e5e12e5fd96b0aee7dd662e61e6d230359 /lib/CodeGen/CGObjC.cpp | |
parent | 9a901bb63990574ff0bcc12ff851d7a71cff8ddb (diff) |
Implement function-try-blocks. However, there's a very subtle bug that I can't track down.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70155 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjC.cpp')
-rw-r--r-- | lib/CodeGen/CGObjC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp index df49c70ec6..de89f0d961 100644 --- a/lib/CodeGen/CGObjC.cpp +++ b/lib/CodeGen/CGObjC.cpp @@ -129,7 +129,7 @@ void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) { DebugInfo = CGM.getDebugInfo(); StartObjCMethod(OMD, OMD->getClassInterface()); EmitStmt(OMD->getBody(getContext())); - FinishFunction(cast<CompoundStmt>(OMD->getBody(getContext()))->getRBracLoc()); + FinishFunction(OMD->getBodyRBrace(getContext())); } // FIXME: I wasn't sure about the synthesis approach. If we end up |