From: Shenghou Ma Date: Mon, 2 Jul 2012 01:33:22 +0000 (+0800) Subject: cmd/gc: add missing case for OCOM in defaultlit() X-Git-Tag: go1.1rc2~2847 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a732cbb593c832a72e87c0ab19b6b06369cb7073;p=gostls13.git 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) +}