Text file
src/runtime/rt0_freebsd_arm64.s
1 // Copyright 2019 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 #include "textflag.h"
6
7 // On FreeBSD argc/argv are passed in R0, not RSP
8 TEXT _rt0_arm64_freebsd(SB),NOSPLIT,$0
9 JMP _rt0_arm64(SB)
10
11 // When building with -buildmode=c-shared, this symbol is called when the shared
12 // library is loaded.
13 TEXT _rt0_arm64_freebsd_lib(SB),NOSPLIT,$0
14 JMP _rt0_arm64_lib(SB)
15
View as plain text