From e5636a3221b3e84b9c15c2a0c55252865e5de335 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 17 Mar 2010 19:55:31 +0000 Subject: [PATCH] Initialize Size member to appease valgrind. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98763 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PIC16/PIC16Section.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.34.1