From patchwork Tue Jul 13 09:47:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [gccgo] Initialize field Date: Mon, 12 Jul 2010 23:47:20 -0000 From: Ian Taylor X-Patchwork-Id: 58727 Message-Id: To: gcc-patches@gcc.gnu.org This patch from Vinu Rajashekhar adds a field initialization that I forgot. Committed to gccgo branch. Ian diff -r a4586bbc83ad go/gogo.cc --- a/go/gogo.cc Mon Jul 12 01:38:42 2010 -0700 +++ b/go/gogo.cc Tue Jul 13 02:45:23 2010 -0700 @@ -4233,7 +4233,8 @@ Package::Package(const std::string& name, const std::string& unique_prefix, source_location location) : name_(name), unique_prefix_(unique_prefix), bindings_(new Bindings(NULL)), - priority_(0), location_(location), used_(false), is_imported_(false) + priority_(0), location_(location), used_(false), is_imported_(false), + uses_sink_alias_(false) { gcc_assert(!name.empty() && !unique_prefix.empty()); }