diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-29 18:54:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-29 18:54:27 +0000 |
commit | df740f400a6148316d9d28d8643407e7f53efecf (patch) | |
tree | 3b8b93d7259a48e103254046934eaacc30a30a04 /gcc/go/gofrontend/parse.cc | |
parent | 5b9e705e63f09c873cd19b7e79a0b7019d13f1ac (diff) | |
download | gcc-df740f400a6148316d9d28d8643407e7f53efecf.zip gcc-df740f400a6148316d9d28d8643407e7f53efecf.tar.gz gcc-df740f400a6148316d9d28d8643407e7f53efecf.tar.bz2 |
Fix select setting a map expression.
Also fix select parsing when declaring a variable with no
statements.
From-SVN: r171690
Diffstat (limited to 'gcc/go/gofrontend/parse.cc')
-rw-r--r-- | gcc/go/gofrontend/parse.cc | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/gcc/go/gofrontend/parse.cc b/gcc/go/gofrontend/parse.cc index fb59019..970dc15 100644 --- a/gcc/go/gofrontend/parse.cc +++ b/gcc/go/gofrontend/parse.cc @@ -4274,40 +4274,42 @@ Parse::comm_clause(Select_clauses* clauses, bool* saw_default) bool got_case = this->comm_case(&is_send, &channel, &val, &closed, &varname, &closedname, &is_default); + if (!is_send + && varname.empty() + && closedname.empty() + && val != NULL + && val->index_expression() != NULL) + val->index_expression()->set_is_lvalue(); + if (this->peek_token()->is_op(OPERATOR_COLON)) this->advance_token(); else error_at(this->location(), "expected colon"); - Block* statements = NULL; + this->gogo_->start_block(this->location()); + Named_object* var = NULL; - Named_object* closedvar = NULL; - if (this->peek_token()->is_op(OPERATOR_SEMICOLON)) - this->advance_token(); - else if (this->statement_list_may_start_here()) + if (!varname.empty()) { - this->gogo_->start_block(this->location()); + // FIXME: LOCATION is slightly wrong here. + Variable* v = new Variable(NULL, channel, false, false, false, + location); + v->set_type_from_chan_element(); + var = this->gogo_->add_variable(varname, v); + } - if (!varname.empty()) - { - // FIXME: LOCATION is slightly wrong here. - Variable* v = new Variable(NULL, channel, false, false, false, - location); - v->set_type_from_chan_element(); - var = this->gogo_->add_variable(varname, v); - } + Named_object* closedvar = NULL; + if (!closedname.empty()) + { + // FIXME: LOCATION is slightly wrong here. + Variable* v = new Variable(Type::lookup_bool_type(), NULL, + false, false, false, location); + closedvar = this->gogo_->add_variable(closedname, v); + } - if (!closedname.empty()) - { - // FIXME: LOCATION is slightly wrong here. - Variable* v = new Variable(Type::lookup_bool_type(), NULL, - false, false, false, location); - closedvar = this->gogo_->add_variable(closedname, v); - } + this->statement_list(); - this->statement_list(); - statements = this->gogo_->finish_block(this->location()); - } + Block* statements = this->gogo_->finish_block(this->location()); if (is_default) { |