diff options
author | Chris Lattner <sabre@nondot.org> | 2007-05-29 23:17:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-05-29 23:17:50 +0000 |
commit | d1af2d2956e829ab16a124fbad1ecd65d81af234 (patch) | |
tree | aabd57f22564ce994ecaa98761de93e895ec46b7 /clang/CodeGen/CodeGenModule.cpp | |
parent | 2a8ad18e7118008528f7002ee23236b7cec796fc (diff) | |
download | bcm5719-llvm-d1af2d2956e829ab16a124fbad1ecd65d81af234.tar.gz bcm5719-llvm-d1af2d2956e829ab16a124fbad1ecd65d81af234.zip |
Implement conversion of clang ast types to LLVM types, at least for some trivial
cases.
llvm-svn: 39519
Diffstat (limited to 'clang/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/CodeGen/CodeGenModule.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/CodeGen/CodeGenModule.cpp b/clang/CodeGen/CodeGenModule.cpp index cbd679ae32c..f1f24f5dcf0 100644 --- a/clang/CodeGen/CodeGenModule.cpp +++ b/clang/CodeGen/CodeGenModule.cpp @@ -19,6 +19,5 @@ using namespace CodeGen; void CodeGenModule::EmitFunction(FunctionDecl *FD) { - CodeGenFunction CGF(*this); - + CodeGenFunction(*this).GenerateCode(FD); } |