From fdfd190a65496919acb62f7c827982d7208764d8 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 28 May 2021 08:35:27 +0200 Subject: [PATCH] unix: remove darwin build tags from asm_bsd_{386,arm}.s CL 316769 dropped support for darwin/386 and darwin/arm. Remove the respective build tags from asm_bsd_{386,arm}.s as well. Change-Id: Ic7c64446aaf80298c2ae893e2103c394ace2b01c Reviewed-on: https://go-review.googlesource.com/c/sys/+/323389 Trust: Tobias Klauser Run-TryBot: Tobias Klauser TryBot-Result: Go Bot Reviewed-by: Brad Fitzpatrick --- unix/asm_bsd_386.s | 4 ++-- unix/asm_bsd_arm.s | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/unix/asm_bsd_386.s b/unix/asm_bsd_386.s index 7f29275f..e0fcd9b3 100644 --- a/unix/asm_bsd_386.s +++ b/unix/asm_bsd_386.s @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build (darwin || freebsd || netbsd || openbsd) && gc -// +build darwin freebsd netbsd openbsd +//go:build (freebsd || netbsd || openbsd) && gc +// +build freebsd netbsd openbsd // +build gc #include "textflag.h" diff --git a/unix/asm_bsd_arm.s b/unix/asm_bsd_arm.s index 98ebfad9..d702d4ad 100644 --- a/unix/asm_bsd_arm.s +++ b/unix/asm_bsd_arm.s @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build (darwin || freebsd || netbsd || openbsd) && gc -// +build darwin freebsd netbsd openbsd +//go:build (freebsd || netbsd || openbsd) && gc +// +build freebsd netbsd openbsd // +build gc #include "textflag.h"