Bill Yi | 7fb3c4c | 2015-03-23 09:04:07 -0700 | [diff] [blame] | 1 | // compile |
2 | |||||
3 | // Copyright 2012 The Go Authors. All rights reserved. | ||||
4 | // Use of this source code is governed by a BSD-style | ||||
5 | // license that can be found in the LICENSE file. | ||||
6 | |||||
7 | // Issue 2588. Used to trigger internal compiler error on 8g, | ||||
8 | // because the compiler tried to registerize the int64 being | ||||
9 | // used as a memory operand of a int64->float64 move. | ||||
10 | |||||
11 | package p | ||||
12 | |||||
13 | func f1(a int64) { | ||||
14 | f2(float64(a), float64(a)) | ||||
15 | } | ||||
16 | |||||
17 | func f2(a,b float64) { | ||||
18 | } | ||||
19 |