From: Shenghou Ma Date: Fri, 21 Sep 2012 19:53:56 +0000 (+1000) Subject: [release-branch.go1] cmd/gc: add missing case for OCOM in defaultlit() X-Git-Tag: go1.0.3~174 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f98661e77ecc1dfac4a82d9608efc504ca48ef66;p=gostls13.git [release-branch.go1] cmd/gc: add missing case for OCOM in defaultlit() ««« backport b5c4f411a852 cmd/gc: add missing case for OCOM in defaultlit() Fixes #3765. R=golang-dev, r CC=golang-dev https://golang.org/cl/6349064 »»» --- diff --git a/src/cmd/gc/const.c b/src/cmd/gc/const.c index e27c883387..2f323c77f9 100644 --- a/src/cmd/gc/const.c +++ b/src/cmd/gc/const.c @@ -1012,12 +1012,13 @@ defaultlit(Node **np, Type *t) } n->type = t; return; + case OCOM: case ONOT: defaultlit(&n->left, t); n->type = n->left->type; return; default: - if(n->left == N) { + if(n->left == N || n->right == N) { dump("defaultlit", n); fatal("defaultlit"); } diff --git a/test/fixedbugs/bug445.go b/test/fixedbugs/bug445.go new file mode 100644 index 0000000000..497ecd3aba --- /dev/null +++ b/test/fixedbugs/bug445.go @@ -0,0 +1,14 @@ +// compile + +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Issue 3765 + +package main + +func f(x uint) uint { + m := ^(1 << x) + return uint(m) +}