]> Cypherpunks repositories - gostls13.git/commit
cmd/cgo: unify cgo output for gc and gccgo
authorMichael Steinert <mike.steinert@gmail.com>
Mon, 17 Jul 2017 16:14:23 +0000 (11:14 -0500)
committerIan Lance Taylor <iant@golang.org>
Wed, 16 Aug 2017 21:57:56 +0000 (21:57 +0000)
commitee714947c511715c752179fe738a45045ffa205c
treef1bc74191275b0759ca67829cbd827df3a0604e9
parentb70adbf29699bc8c3d1ac869806ac426b3bccf18
cmd/cgo: unify cgo output for gc and gccgo

When calling a Go function that returns multiple values from C, cgo
generates a structure to hold the values. According to the documentation
this structure is called `struct <function-name>_return`. When compiling
for gccgo the generated structure name is `struct <function-name>_result`.
This change updates the output for gccgo to match the documentation and
output for gc.

Fixes #20910

Change-Id: Iaea8030a695a7aaf9d9f317447fc05615d8e4adc
Reviewed-on: https://go-review.googlesource.com/49350
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
misc/cgo/test/cgo_test.go
misc/cgo/test/issue20910.c [new file with mode: 0644]
misc/cgo/test/issue20910.go [new file with mode: 0644]
src/cmd/cgo/out.go