From: ian Date: Fri, 17 Feb 2012 23:36:58 +0000 (+0000) Subject: compiler: Permit (_) on left hand side of =. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d42de6bdac26abf36bcf3b447eaef5a78a17dca7;p=thirdparty%2Fgcc.git compiler: Permit (_) on left hand side of =. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184356 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/go/gofrontend/parse.cc b/gcc/go/gofrontend/parse.cc index 6eb1981a4be9..df28d2baf4b8 100644 --- a/gcc/go/gofrontend/parse.cc +++ b/gcc/go/gofrontend/parse.cc @@ -2491,7 +2491,7 @@ Parse::operand(bool may_be_sink) if (token->is_op(OPERATOR_LPAREN)) { this->advance_token(); - ret = this->expression(PRECEDENCE_NORMAL, false, true, NULL); + ret = this->expression(PRECEDENCE_NORMAL, may_be_sink, true, NULL); if (!this->peek_token()->is_op(OPERATOR_RPAREN)) error_at(this->location(), "missing %<)%>"); else