compiler: Report invalid receiver types in function definitions.
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Sep 2015 04:33:32 +0000 (04:33 +0000)
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Sep 2015 04:33:32 +0000 (04:33 +0000)
    Fixes golang/go#12324.

    Reviewed-on: https://go-review.googlesource.com/13988

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@227427 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/go/gofrontend/MERGE
gcc/go/gofrontend/gogo.cc

index f74d2ca..9dea1f8 100644 (file)
@@ -1,4 +1,4 @@
-3f8feb4f905535448833a14e4f5c83f682087749
+672ac2abc52d8bd70cb9fb03dd4a32fdde9c438f
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index 233ee27..5ecc55d 100644 (file)
@@ -1818,7 +1818,11 @@ Gogo::start_function(const std::string& name, Function_type* type,
                                                                  function);
            }
          else
-           go_unreachable();
+            {
+              error_at(type->receiver()->location(),
+                       "invalid receiver type (receiver must be a named type)");
+              ret = Named_object::make_function(name, NULL, function);
+            }
        }
       this->package_->bindings()->add_method(ret);
     }