From: Devang Patel Date: Wed, 31 Oct 2007 19:54:57 +0000 (+0000) Subject: Initialize MemCpyFn X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61bb9cac0409faa6c671727b3bb065e07dff5315;p=clang Initialize MemCpyFn git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43569 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/CodeGen/CodeGenModule.cpp b/CodeGen/CodeGenModule.cpp index a596c08528..70cefea364 100644 --- a/CodeGen/CodeGenModule.cpp +++ b/CodeGen/CodeGenModule.cpp @@ -25,7 +25,8 @@ using namespace CodeGen; CodeGenModule::CodeGenModule(ASTContext &C, llvm::Module &M) - : Context(C), TheModule(M), Types(C, M), CFConstantStringClassRef(0) {} + : Context(C), TheModule(M), + Types(C, M), MemCpyFn(0), CFConstantStringClassRef(0) {} llvm::Constant *CodeGenModule::GetAddrOfGlobalDecl(const ValueDecl *D) { // See if it is already in the map.