diff mbox

Go patch committed: Don't crash when some object is redefined as type

Message ID mcrlj3jm1h3.fsf@google.com
State New
Headers show

Commit Message

Ian Lance Taylor Dec. 21, 2010, 6:20 p.m. UTC
This patch to the Go frontend avoids a crash when some object is
redefined as a type.  This is invalid, but the compiler was assuming
that the definition succeeded.  Bootstrapped and ran Go testsuite on
x86_64-unknown-linux-gnu.  Committed to mainline.

Ian
diff mbox

Patch

diff -r ff7c1d0eb353 -r 7f448375b9ac go/gogo.cc
--- a/go/gogo.cc	Tue Dec 21 10:08:48 2010 -0800
+++ b/go/gogo.cc	Tue Dec 21 10:19:17 2010 -0800
@@ -881,7 +881,7 @@ 
 {
   Named_object* no = this->current_bindings()->add_type(name, NULL, type,
 							location);
-  if (!this->in_global_scope())
+  if (!this->in_global_scope() && no->is_type())
     no->type_value()->set_in_function(this->functions_.back().function);
 }
 
@@ -901,7 +901,7 @@ 
 {
   Bindings* bindings = this->current_bindings();
   Named_object* no = bindings->add_type_declaration(name, NULL, location);
-  if (!this->in_global_scope())
+  if (!this->in_global_scope() && no->is_type_declaration())
     {
       Named_object* f = this->functions_.back().function;
       no->type_declaration_value()->set_in_function(f);