diff options
author | Shenghou Ma <minux.ma@gmail.com> | 2013-12-16 16:54:10 -0500 |
---|---|---|
committer | Shenghou Ma <minux.ma@gmail.com> | 2013-12-16 16:54:10 -0500 |
commit | 3588e7288052eb28534fb08a702b6acc7706661b (patch) | |
tree | 674712b55e433af4861f009f3357502ea2301ddc /test | |
parent | 01757bac3fc6f06a7c11f39d33197a68c6724279 (diff) | |
download | go-3588e7288052eb28534fb08a702b6acc7706661b.tar.gz |
cmd/gc: fix comparison order of parameters in mpcmpfltc(a, b)
It should compare a - b to 0, not b - a to 0.
Fixes issue 6964.
R=golang-dev, r
CC=golang-dev
https://codereview.appspot.com/39020044
Diffstat (limited to 'test')
-rw-r--r-- | test/fixedbugs/issue6964.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/fixedbugs/issue6964.go b/test/fixedbugs/issue6964.go new file mode 100644 index 000000000..821735c08 --- /dev/null +++ b/test/fixedbugs/issue6964.go @@ -0,0 +1,11 @@ +// errorcheck + +// Copyright 2013 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. + +package main + +func main() { + _ = string(-4 + 2i + 2) // ERROR "-4\+2i" +} |