diff options
author | Russ Cox <rsc@golang.org> | 2014-09-12 00:55:24 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2014-09-12 00:55:24 -0400 |
commit | 1e5353f0b4743d02c1ba99f750094049ebdd05dc (patch) | |
tree | 2792d1d359945c1723c577a2aca92357abaee7d5 /src/syscall | |
parent | 9ea7b4e606b033d7c12c67fa2508f74aca2a8118 (diff) | |
download | go-1e5353f0b4743d02c1ba99f750094049ebdd05dc.tar.gz |
syscall: add #include "funcdata.h" to files modified in last CL
That's what defines GO_ARGS.
TBR=khr
CC=golang-codereviews
https://codereview.appspot.com/141460043
Diffstat (limited to 'src/syscall')
-rw-r--r-- | src/syscall/asm_darwin_386.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_dragonfly_386.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_dragonfly_amd64.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_freebsd_386.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_freebsd_amd64.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_freebsd_arm.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_linux_386.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_linux_amd64.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_linux_arm.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_nacl_386.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_nacl_amd64p32.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_nacl_arm.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_netbsd_386.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_netbsd_amd64.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_netbsd_arm.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_openbsd_386.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_openbsd_amd64.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_plan9_386.s | 1 | ||||
-rw-r--r-- | src/syscall/asm_plan9_amd64.s | 1 |
19 files changed, 19 insertions, 0 deletions
diff --git a/src/syscall/asm_darwin_386.s b/src/syscall/asm_darwin_386.s index 4d60a817e..7d8ddf437 100644 --- a/src/syscall/asm_darwin_386.s +++ b/src/syscall/asm_darwin_386.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for 386, Darwin diff --git a/src/syscall/asm_dragonfly_386.s b/src/syscall/asm_dragonfly_386.s index 59cb39e44..0d7d6ba1e 100644 --- a/src/syscall/asm_dragonfly_386.s +++ b/src/syscall/asm_dragonfly_386.s @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. #include "textflag.h" +#include "funcdata.h" // // System call support for 386, FreeBSD diff --git a/src/syscall/asm_dragonfly_amd64.s b/src/syscall/asm_dragonfly_amd64.s index 764c7bda3..b81cf8dda 100644 --- a/src/syscall/asm_dragonfly_amd64.s +++ b/src/syscall/asm_dragonfly_amd64.s @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. #include "textflag.h" +#include "funcdata.h" // // System call support for AMD64, DragonFly diff --git a/src/syscall/asm_freebsd_386.s b/src/syscall/asm_freebsd_386.s index b711aa5ad..ff5f9f4a2 100644 --- a/src/syscall/asm_freebsd_386.s +++ b/src/syscall/asm_freebsd_386.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for 386, FreeBSD diff --git a/src/syscall/asm_freebsd_amd64.s b/src/syscall/asm_freebsd_amd64.s index 95583b95c..47ceb9287 100644 --- a/src/syscall/asm_freebsd_amd64.s +++ b/src/syscall/asm_freebsd_amd64.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for AMD64, FreeBSD diff --git a/src/syscall/asm_freebsd_arm.s b/src/syscall/asm_freebsd_arm.s index 5588eaaa4..ed369ce73 100644 --- a/src/syscall/asm_freebsd_arm.s +++ b/src/syscall/asm_freebsd_arm.s @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. #include "textflag.h" +#include "funcdata.h" // // System call support for ARM, FreeBSD diff --git a/src/syscall/asm_linux_386.s b/src/syscall/asm_linux_386.s index fb3a3b9bd..bcb85add6 100644 --- a/src/syscall/asm_linux_386.s +++ b/src/syscall/asm_linux_386.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System calls for 386, Linux diff --git a/src/syscall/asm_linux_amd64.s b/src/syscall/asm_linux_amd64.s index fb6672624..6c9e65451 100644 --- a/src/syscall/asm_linux_amd64.s +++ b/src/syscall/asm_linux_amd64.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System calls for AMD64, Linux diff --git a/src/syscall/asm_linux_arm.s b/src/syscall/asm_linux_arm.s index edb5b21a7..0060a2171 100644 --- a/src/syscall/asm_linux_arm.s +++ b/src/syscall/asm_linux_arm.s @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. #include "textflag.h" +#include "funcdata.h" // // System calls for arm, Linux diff --git a/src/syscall/asm_nacl_386.s b/src/syscall/asm_nacl_386.s index 655248b37..5352b7697 100644 --- a/src/syscall/asm_nacl_386.s +++ b/src/syscall/asm_nacl_386.s @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. #include "textflag.h" +#include "funcdata.h" #include "../runtime/syscall_nacl.h" // diff --git a/src/syscall/asm_nacl_amd64p32.s b/src/syscall/asm_nacl_amd64p32.s index 33f822013..637fafab4 100644 --- a/src/syscall/asm_nacl_amd64p32.s +++ b/src/syscall/asm_nacl_amd64p32.s @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. #include "textflag.h" +#include "funcdata.h" #include "../runtime/syscall_nacl.h" // diff --git a/src/syscall/asm_nacl_arm.s b/src/syscall/asm_nacl_arm.s index 536d751b5..3e4479432 100644 --- a/src/syscall/asm_nacl_arm.s +++ b/src/syscall/asm_nacl_arm.s @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. #include "textflag.h" +#include "funcdata.h" #include "../runtime/syscall_nacl.h" // diff --git a/src/syscall/asm_netbsd_386.s b/src/syscall/asm_netbsd_386.s index 9dc6a9242..29442ca9d 100644 --- a/src/syscall/asm_netbsd_386.s +++ b/src/syscall/asm_netbsd_386.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for 386, NetBSD diff --git a/src/syscall/asm_netbsd_amd64.s b/src/syscall/asm_netbsd_amd64.s index d6bb1dd09..6d0f311f4 100644 --- a/src/syscall/asm_netbsd_amd64.s +++ b/src/syscall/asm_netbsd_amd64.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for AMD64, NetBSD diff --git a/src/syscall/asm_netbsd_arm.s b/src/syscall/asm_netbsd_arm.s index 357e28d94..c4190ea33 100644 --- a/src/syscall/asm_netbsd_arm.s +++ b/src/syscall/asm_netbsd_arm.s @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. #include "textflag.h" +#include "funcdata.h" // // System call support for ARM, NetBSD diff --git a/src/syscall/asm_openbsd_386.s b/src/syscall/asm_openbsd_386.s index 6c51f197e..e448a70ca 100644 --- a/src/syscall/asm_openbsd_386.s +++ b/src/syscall/asm_openbsd_386.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for 386, OpenBSD diff --git a/src/syscall/asm_openbsd_amd64.s b/src/syscall/asm_openbsd_amd64.s index 4ba5844e4..654e3df74 100644 --- a/src/syscall/asm_openbsd_amd64.s +++ b/src/syscall/asm_openbsd_amd64.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for AMD64, OpenBSD diff --git a/src/syscall/asm_plan9_386.s b/src/syscall/asm_plan9_386.s index 30726b4d0..8585385bc 100644 --- a/src/syscall/asm_plan9_386.s +++ b/src/syscall/asm_plan9_386.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for 386, Plan 9 diff --git a/src/syscall/asm_plan9_amd64.s b/src/syscall/asm_plan9_amd64.s index 3e61318cd..afbd49152 100644 --- a/src/syscall/asm_plan9_amd64.s +++ b/src/syscall/asm_plan9_amd64.s @@ -6,6 +6,7 @@ // so that go vet can check that they are correct. #include "textflag.h" +#include "funcdata.h" // // System call support for Plan 9 |