diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cmd/gc/walk.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cmd/gc/walk.c b/src/cmd/gc/walk.c index 5768285b8..f845638e8 100644 --- a/src/cmd/gc/walk.c +++ b/src/cmd/gc/walk.c @@ -803,11 +803,8 @@ walkexpr(Node **np, NodeList **init) switch(et) { case I2Isame: case E2Esame: - n->rlist = list(list1(r->left), nodbool(1)); - typechecklist(n->rlist, Erv); - goto as2; case I2E: - n->list = list(list1(n->right), nodbool(1)); + n->rlist = list(list1(r->left), nodbool(1)); typechecklist(n->rlist, Erv); goto as2; case I2T: |