2013-05-17 14:20:39 -06:00
|
|
|
// Copyright 2010 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.
|
|
|
|
|
|
|
|
// +build ignore
|
|
|
|
|
|
|
|
// This file contains declarations to test the assembly in test_asm.s.
|
|
|
|
|
2013-05-22 11:20:50 -06:00
|
|
|
package testdata
|
2013-05-17 14:20:39 -06:00
|
|
|
|
|
|
|
func arg1(x int8, y uint8)
|
|
|
|
func arg2(x int16, y uint16)
|
|
|
|
func arg4(x int32, y uint32)
|
|
|
|
func arg8(x int64, y uint64)
|
|
|
|
func argint(x int, y uint)
|
|
|
|
func argptr(x *byte, y *byte, c chan int, m map[int]int, f func())
|
|
|
|
func argstring(x, y string)
|
|
|
|
func argslice(x, y []string)
|
|
|
|
func argiface(x interface{}, y interface {
|
|
|
|
m()
|
|
|
|
})
|
|
|
|
func returnint() int
|
|
|
|
func returnbyte(x int) byte
|
|
|
|
func returnnamed(x byte) (r1 int, r2 int16, r3 string, r4 byte)
|
2014-11-03 15:27:41 -07:00
|
|
|
func returnintmissing() int
|
|
|
|
func leaf(x, y int) int
|
2013-11-01 12:49:11 -06:00
|
|
|
|
|
|
|
func noprof(x int)
|
|
|
|
func dupok(x int)
|
|
|
|
func nosplit(x int)
|
|
|
|
func rodata(x int)
|
|
|
|
func noptr(x int)
|
|
|
|
func wrapper(x int)
|