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 11package p 12 13func f1(a int64) { 14 f2(float64(a), float64(a)) 15} 16 17func f2(a,b float64) { 18} 19 20