Make the driver print function bodies at -parse-print-ast

llvm-svn: 39048
diff --git a/clang/Sema/Sema.cpp b/clang/Sema/Sema.cpp
index e62de8b..fe833aa 100644
--- a/clang/Sema/Sema.cpp
+++ b/clang/Sema/Sema.cpp
@@ -196,7 +196,7 @@
 Action::StmtResult
 ASTBuilder::ParseReturnStmt(SourceLocation ReturnLoc,
                             ExprTy *RetValExp) {
-  
+  return new ReturnStmt((Expr*)RetValExp);
 }
 
 //===--------------------------------------------------------------------===//