aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-04-15 04:10:19 +0000
committerAnders Carlsson <andersca@mac.com>2009-04-15 04:10:19 +0000
commitd7c62b1929b024047a06697d2fedbd4c2e7d0cdf (patch)
tree10110455d83eebad0753d018c7da62eaf349e185 /lib/CodeGen/CodeGenFunction.cpp
parent3fabc86064359d6de3b9ac25f137eca5d76b7ec0 (diff)
Simplify CodeGenFunction::GenerateCode.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r--lib/CodeGen/CodeGenFunction.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp
index 7ddc221370..4bdebfe431 100644
--- a/lib/CodeGen/CodeGenFunction.cpp
+++ b/lib/CodeGen/CodeGenFunction.cpp
@@ -225,16 +225,11 @@ void CodeGenFunction::GenerateCode(const FunctionDecl *FD,
FProto->getArgType(i)));
}
- StartFunction(FD, FD->getResultType(), Fn, Args,
- cast<CompoundStmt>(FD->getBody())->getLBracLoc());
+ const CompoundStmt *S = FD->getBody();
- EmitStmt(FD->getBody());
-
- const CompoundStmt *S = dyn_cast<CompoundStmt>(FD->getBody());
- if (S)
- FinishFunction(S->getRBracLoc());
- else
- FinishFunction();
+ StartFunction(FD, FD->getResultType(), Fn, Args, S->getLBracLoc());
+ EmitStmt(S);
+ FinishFunction(S->getRBracLoc());
// Destroy the 'this' declaration.
if (CXXThisDecl)