From: Benjamin Kramer Date: Wed, 17 Mar 2010 19:55:31 +0000 (+0000) Subject: Initialize Size member to appease valgrind. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e5636a3221b3e84b9c15c2a0c55252865e5de335;p=oota-llvm.git Initialize Size member to appease valgrind. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98763 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PIC16/PIC16Section.h b/lib/Target/PIC16/PIC16Section.h index 3a8bbfb5fb4..566f9207dbc 100644 --- a/lib/Target/PIC16/PIC16Section.h +++ b/lib/Target/PIC16/PIC16Section.h @@ -45,7 +45,7 @@ namespace llvm { PIC16Section(const StringRef &name, SectionKind K, const std::string &addr, int color) - : MCSection(K), Name(name), Address(addr), Color(color) { + : MCSection(K), Name(name), Address(addr), Color(color), Size(0) { } public: