aboutsummaryrefslogtreecommitdiff
path: root/gcc/go/gofrontend/parse.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/go/gofrontend/parse.cc')
-rw-r--r--gcc/go/gofrontend/parse.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/go/gofrontend/parse.cc b/gcc/go/gofrontend/parse.cc
index 6ed4377..e611c70 100644
--- a/gcc/go/gofrontend/parse.cc
+++ b/gcc/go/gofrontend/parse.cc
@@ -3483,7 +3483,7 @@ Parse::expression(Precedence precedence, bool may_be_sink,
if (is_parenthesized != NULL)
*is_parenthesized = false;
-
+
Operator op = token->op();
Location binop_location = token->location();
@@ -3576,7 +3576,7 @@ Parse::unary_expr(bool may_be_sink, bool may_be_composite_lit,
// There is a complex parse for <- chan. The choices are
// Convert x to type <- chan int:
- // (<- chan int)(x)
+ // (<- chan int)(x)
// Receive from (x converted to type chan <- chan int):
// (<- chan <- chan int (x))
// Convert x to type <- chan (<- chan int).