aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2021-11-06 11:09:56 +0100
committerTobias Klauser <tobias.klauser@gmail.com>2021-11-06 10:24:44 +0000
commitf19e4001808863d2ebfe9d1975476513d030c381 (patch)
tree9b8c0593328c114b96a632737848d9fd30f0c2e3 /src/syscall
parentb74f2efc47bbfcc4aa301ebda1033948d8b6b63e (diff)
downloadgo-f19e4001808863d2ebfe9d1975476513d030c381.tar.gz
go-f19e4001808863d2ebfe9d1975476513d030c381.zip
all: remove more leftover // +build lines
CL 344955 and CL 359476 removed almost all // +build lines, but leaving some assembly files and generating scripts. Also, some files were added with // +build lines after CL 359476 was merged. Remove these or rename files where more appropriate. For #41184 Change-Id: I7eb85a498ed9788b42a636e775f261d755504ffa Reviewed-on: https://go-review.googlesource.com/c/go/+/361480 Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
Diffstat (limited to 'src/syscall')
-rw-r--r--src/syscall/asan.go1
-rw-r--r--src/syscall/asan0.go3
-rw-r--r--src/syscall/asm9_unix2_amd64.s1
-rw-r--r--src/syscall/asm_linux_mips64x.s2
-rw-r--r--src/syscall/asm_linux_mipsx.s2
-rw-r--r--src/syscall/asm_linux_ppc64x.s2
-rw-r--r--src/syscall/asm_netbsd_amd64.s (renamed from src/syscall/asm9_unix1_amd64.s)3
-rw-r--r--src/syscall/asm_unix_386.s1
-rw-r--r--src/syscall/asm_unix_amd64.s1
-rwxr-xr-xsrc/syscall/mksyscall.pl1
-rwxr-xr-xsrc/syscall/mksyscall_libc.pl1
11 files changed, 1 insertions, 17 deletions
diff --git a/src/syscall/asan.go b/src/syscall/asan.go
index 3199130211..eff30781e4 100644
--- a/src/syscall/asan.go
+++ b/src/syscall/asan.go
@@ -3,7 +3,6 @@
// license that can be found in the LICENSE file.
//go:build asan
-// +build asan
package syscall
diff --git a/src/syscall/asan0.go b/src/syscall/asan0.go
index 7b69f4a64b..08bc44dea1 100644
--- a/src/syscall/asan0.go
+++ b/src/syscall/asan0.go
@@ -1,9 +1,8 @@
-// Copyright 2020 The Go Authors. All rights reserved.
+// Copyright 2021 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.
//go:build !asan
-// +build !asan
package syscall
diff --git a/src/syscall/asm9_unix2_amd64.s b/src/syscall/asm9_unix2_amd64.s
index 7e5e3c52ad..649bc6024c 100644
--- a/src/syscall/asm9_unix2_amd64.s
+++ b/src/syscall/asm9_unix2_amd64.s
@@ -3,7 +3,6 @@
// license that can be found in the LICENSE file.
//go:build dragonfly || freebsd
-// +build dragonfly freebsd
#include "textflag.h"
#include "funcdata.h"
diff --git a/src/syscall/asm_linux_mips64x.s b/src/syscall/asm_linux_mips64x.s
index d18a7b8944..a75d0f7a2a 100644
--- a/src/syscall/asm_linux_mips64x.s
+++ b/src/syscall/asm_linux_mips64x.s
@@ -3,8 +3,6 @@
// license that can be found in the LICENSE file.
//go:build linux && (mips64 || mips64le)
-// +build linux
-// +build mips64 mips64le
#include "textflag.h"
diff --git a/src/syscall/asm_linux_mipsx.s b/src/syscall/asm_linux_mipsx.s
index cafa6a35c7..04f90f6edf 100644
--- a/src/syscall/asm_linux_mipsx.s
+++ b/src/syscall/asm_linux_mipsx.s
@@ -3,8 +3,6 @@
// license that can be found in the LICENSE file.
//go:build linux && (mips || mipsle)
-// +build linux
-// +build mips mipsle
#include "textflag.h"
#include "funcdata.h"
diff --git a/src/syscall/asm_linux_ppc64x.s b/src/syscall/asm_linux_ppc64x.s
index eac7272f1d..044a479c00 100644
--- a/src/syscall/asm_linux_ppc64x.s
+++ b/src/syscall/asm_linux_ppc64x.s
@@ -3,8 +3,6 @@
// license that can be found in the LICENSE file.
//go:build linux && (ppc64 || ppc64le)
-// +build linux
-// +build ppc64 ppc64le
#include "textflag.h"
diff --git a/src/syscall/asm9_unix1_amd64.s b/src/syscall/asm_netbsd_amd64.s
index e4609d075c..9e4dd20ad3 100644
--- a/src/syscall/asm9_unix1_amd64.s
+++ b/src/syscall/asm_netbsd_amd64.s
@@ -2,9 +2,6 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build netbsd
-// +build netbsd
-
#include "textflag.h"
#include "funcdata.h"
diff --git a/src/syscall/asm_unix_386.s b/src/syscall/asm_unix_386.s
index 9f9b7f362d..22700194cb 100644
--- a/src/syscall/asm_unix_386.s
+++ b/src/syscall/asm_unix_386.s
@@ -3,7 +3,6 @@
// license that can be found in the LICENSE file.
//go:build freebsd || netbsd
-// +build freebsd netbsd
#include "textflag.h"
#include "funcdata.h"
diff --git a/src/syscall/asm_unix_amd64.s b/src/syscall/asm_unix_amd64.s
index c53e1a42b6..8ee46b86b5 100644
--- a/src/syscall/asm_unix_amd64.s
+++ b/src/syscall/asm_unix_amd64.s
@@ -3,7 +3,6 @@
// license that can be found in the LICENSE file.
//go:build dragonfly || freebsd || netbsd
-// +build dragonfly freebsd netbsd
#include "textflag.h"
#include "funcdata.h"
diff --git a/src/syscall/mksyscall.pl b/src/syscall/mksyscall.pl
index 758948bc53..25ab911b7c 100755
--- a/src/syscall/mksyscall.pl
+++ b/src/syscall/mksyscall.pl
@@ -387,7 +387,6 @@ print <<EOF;
// Code generated by the command above; DO NOT EDIT.
//go:build $newtags
-// +build $tags
package syscall
diff --git a/src/syscall/mksyscall_libc.pl b/src/syscall/mksyscall_libc.pl
index 631a07c819..37314765d8 100755
--- a/src/syscall/mksyscall_libc.pl
+++ b/src/syscall/mksyscall_libc.pl
@@ -309,7 +309,6 @@ print <<EOF;
// Code generated by the command above; DO NOT EDIT.
//go:build $newtags
-// +build $tags
package $package