diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-07-31 23:17:49 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-07-31 23:17:49 +0000 |
commit | 1393eb7608ccdfd5a8a5c234823eab49117427f6 (patch) | |
tree | 5ebe29b68c0615d915eaa32dceaac54475d501a6 /gcc/go | |
parent | 1fc642f1a780b1d61fa4bd26d7add6ed2d41d6cb (diff) | |
download | gcc-1393eb7608ccdfd5a8a5c234823eab49117427f6.zip gcc-1393eb7608ccdfd5a8a5c234823eab49117427f6.tar.gz gcc-1393eb7608ccdfd5a8a5c234823eab49117427f6.tar.bz2 |
compiler: Report errors for malformed builtin calls.
Errors reported from malformed builtin calls are handled in a later
pass than the one in which they are detected. If a malformed builtin
call is lowered into an error expression too early, these errors will
never be reported.
Fixes golang/go#11561.
Reviewed-on: https://go-review.googlesource.com/12778
From-SVN: r226459
Diffstat (limited to 'gcc/go')
-rw-r--r-- | gcc/go/gofrontend/MERGE | 2 | ||||
-rw-r--r-- | gcc/go/gofrontend/expressions.cc | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index 732b33d..4ebc803 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -bc4dda16f8686ab6e7335adfdfd2c6cc81cb2eb5 +2bf7c643a1d2f8503070c8e6cb87852026e32400 The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/gcc/go/gofrontend/expressions.cc b/gcc/go/gofrontend/expressions.cc index 065be33..976e34b 100644 --- a/gcc/go/gofrontend/expressions.cc +++ b/gcc/go/gofrontend/expressions.cc @@ -8499,7 +8499,8 @@ Call_expression::do_lower(Gogo* gogo, Named_object* function, { if (!this->fn_->type()->is_error()) this->report_error(_("expected function")); - return Expression::make_error(loc); + this->set_is_error(); + return this; } // Handle an argument which is a call to a function which returns |