mirror of
https://github.com/golang/sys.git
synced 2026-02-08 11:46:04 +03:00
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 <tobias.klauser@gmail.com>
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
30 lines
732 B
ArmAsm
30 lines
732 B
ArmAsm
// 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 (freebsd || netbsd || openbsd) && gc
|
|
// +build freebsd netbsd openbsd
|
|
// +build gc
|
|
|
|
#include "textflag.h"
|
|
|
|
// System call support for ARM BSD
|
|
|
|
// Just jump to package syscall's implementation for all these functions.
|
|
// The runtime may know about them.
|
|
|
|
TEXT ·Syscall(SB),NOSPLIT,$0-28
|
|
B syscall·Syscall(SB)
|
|
|
|
TEXT ·Syscall6(SB),NOSPLIT,$0-40
|
|
B syscall·Syscall6(SB)
|
|
|
|
TEXT ·Syscall9(SB),NOSPLIT,$0-52
|
|
B syscall·Syscall9(SB)
|
|
|
|
TEXT ·RawSyscall(SB),NOSPLIT,$0-28
|
|
B syscall·RawSyscall(SB)
|
|
|
|
TEXT ·RawSyscall6(SB),NOSPLIT,$0-40
|
|
B syscall·RawSyscall6(SB)
|