diff options
Diffstat (limited to 'clang/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/CodeGen/CodeGenFunction.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/CodeGen/CodeGenFunction.cpp b/clang/CodeGen/CodeGenFunction.cpp index c5c3f5256fe..00f55b8bce9 100644 --- a/clang/CodeGen/CodeGenFunction.cpp +++ b/clang/CodeGen/CodeGenFunction.cpp @@ -126,6 +126,9 @@ void CodeGenFunction::GenerateCode(const FunctionDecl *FD) { Builder.SetInsertPoint(EntryBB); + // TODO: handle params. + + // Emit the function body. EmitStmt(FD->getBody()); // Emit a return for code that falls off the end. |