]> granicus.if.org Git - clang/commitdiff
Initialize MemCpyFn
authorDevang Patel <dpatel@apple.com>
Wed, 31 Oct 2007 19:54:57 +0000 (19:54 +0000)
committerDevang Patel <dpatel@apple.com>
Wed, 31 Oct 2007 19:54:57 +0000 (19:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43569 91177308-0d34-0410-b5e6-96231b3b80d8

CodeGen/CodeGenModule.cpp

index a596c08528dd828a8735a555bf8d94c4e3f8ccd0..70cefea3649f6719492da10f394f12d0ff5c4f5b 100644 (file)
@@ -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.