Implement conversion of clang ast types to LLVM types, at least for some trivial
cases.

llvm-svn: 39519
diff --git a/clang/CodeGen/CodeGenModule.cpp b/clang/CodeGen/CodeGenModule.cpp
index cbd679a..f1f24f5 100644
--- a/clang/CodeGen/CodeGenModule.cpp
+++ b/clang/CodeGen/CodeGenModule.cpp
@@ -19,6 +19,5 @@
 
 
 void CodeGenModule::EmitFunction(FunctionDecl *FD) {
-  CodeGenFunction CGF(*this);
-  
+  CodeGenFunction(*this).GenerateCode(FD);
 }