1
0
mirror of https://github.com/golang/go synced 2024-09-24 01:10:14 -06:00
go/test/fixedbugs/issue15013.go
Ian Lance Taylor 777a77b4d2 cmd/compile: don't skip PPARAMOUT in esccall after varargs
Fixes bug I introduced in CL 21202.

Fixes #15013.

Change-Id: I2344d7e22b8273425a0a56f4a77588b5c6e4d8c6
Reviewed-on: https://go-review.googlesource.com/21270
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2016-03-30 02:43:08 +00:00

25 lines
560 B
Go

// compile
// Copyright 2016 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.
// CL 21202 introduced a compiler crash in the handling of a varargs
// function in the same recursive group as a function that calls it.
// Nothing in the standard library caught the problem, so adding a test.
package p
func F1(p *int, a ...*int) (int, *int) {
if p == nil {
return F2(), a[0]
}
return 0, a[0]
}
func F2() int {
var i0, i1 int
a, _ := F1(&i0, &i1)
return a
}