compiler: Permit (_) on left hand side of =.

From-SVN: r184356
This commit is contained in:
Ian Lance Taylor 2012-02-17 23:36:58 +00:00
parent f21f4773f3
commit 9714c8aab4
1 changed files with 1 additions and 1 deletions

View File

@ -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