diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-12-16 18:53:46 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-12-16 18:53:46 +0000 |
commit | 8c54c36bdf845cce69641c012e97ef30dc497369 (patch) | |
tree | 7db52d8bf0adafc96716713bffbb1b146557a5b2 /gcc/go/gofrontend/parse.h | |
parent | 01ada710782bb14c86d7caed1813efa593740eab (diff) | |
download | gcc-8c54c36bdf845cce69641c012e97ef30dc497369.zip gcc-8c54c36bdf845cce69641c012e97ef30dc497369.tar.gz gcc-8c54c36bdf845cce69641c012e97ef30dc497369.tar.bz2 |
re PR go/61273 (gccgo: ICE in Unsafe_type_conversion_expression::do_get_backend [GoSmith])
PR go/61273
compiler: Send statements should contextually permit composite literals.
From-SVN: r218788
Diffstat (limited to 'gcc/go/gofrontend/parse.h')
-rw-r--r-- | gcc/go/gofrontend/parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/gofrontend/parse.h b/gcc/go/gofrontend/parse.h index 3749645..d55798b 100644 --- a/gcc/go/gofrontend/parse.h +++ b/gcc/go/gofrontend/parse.h @@ -245,7 +245,7 @@ class Parse void statement_list(); bool statement_list_may_start_here(); void expression_stat(Expression*); - void send_stmt(Expression*); + void send_stmt(Expression*, bool may_be_composite_lit); void inc_dec_stat(Expression*); void assignment(Expression*, bool may_be_composite_lit, Range_clause*); void tuple_assignment(Expression_list*, bool may_be_composite_lit, |