2009-11-17 09:20:58 -07:00
|
|
|
// Copyright 2009 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.
|
|
|
|
|
2014-09-04 21:05:18 -06:00
|
|
|
#include "textflag.h"
|
2013-08-07 13:20:05 -06:00
|
|
|
|
2017-10-09 12:31:20 -06:00
|
|
|
// On FreeBSD argc/argv are passed in DI, not SP, so we can't use _rt0_amd64.
|
2013-08-07 13:20:05 -06:00
|
|
|
TEXT _rt0_amd64_freebsd(SB),NOSPLIT,$-8
|
2013-03-06 13:03:04 -07:00
|
|
|
LEAQ 8(DI), SI // argv
|
|
|
|
MOVQ 0(DI), DI // argc
|
2017-10-09 12:31:20 -06:00
|
|
|
JMP runtime·rt0_go(SB)
|
2017-10-10 16:11:05 -06:00
|
|
|
|
|
|
|
TEXT _rt0_amd64_freebsd_lib(SB),NOSPLIT,$0
|
|
|
|
JMP _rt0_amd64_lib(SB)
|