diff options
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); } |