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 3a8bbfb..566f920 100644
--- a/lib/Target/PIC16/PIC16Section.h
+++ b/lib/Target/PIC16/PIC16Section.h
@@ -45,7 +45,7 @@
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: