blob: 3b90db88d6163635026d9037d9e1167c6185f10f [file] [log] [blame]
Bill Yi7fb3c4c2015-03-23 09:04:07 -07001// 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
11package p
12
13func f1(a int64) {
14 f2(float64(a), float64(a))
15}
16
17func f2(a,b float64) {
18}
19