mirror of
https://github.com/golang/go
synced 2024-11-02 09:03:03 +00:00
test: add test for gccgo compiler crash
Gccgo crashed compiling a function that returned multiple zero-sized values. Change-Id: I499112cc310e4a4f649962f4d2bc9fee95dee1b6 Reviewed-on: https://go-review.googlesource.com/38772 Reviewed-by: Than McIntosh <thanm@google.com> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
4b50c81356
commit
835b17c85f
1 changed files with 17 additions and 0 deletions
17
test/fixedbugs/gcc80226.go
Normal file
17
test/fixedbugs/gcc80226.go
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
// compile
|
||||||
|
|
||||||
|
// Copyright 2017 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.
|
||||||
|
|
||||||
|
// The gccgo compiler crashed while compiling a function that returned
|
||||||
|
// multiple zero-sized structs.
|
||||||
|
// https://gcc.gnu.org/PR80226.
|
||||||
|
|
||||||
|
package p
|
||||||
|
|
||||||
|
type S struct{}
|
||||||
|
|
||||||
|
func F() (S, S) {
|
||||||
|
return S{}, S{}
|
||||||
|
}
|
Loading…
Reference in a new issue