Text file src/runtime/rt0_windows_amd64.s

     1  // Copyright 2011 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 "go_asm.h"
     6  #include "go_tls.h"
     7  #include "textflag.h"
     8  
     9  TEXT _rt0_amd64_windows(SB),NOSPLIT,$0
    10  	JMP	_rt0_amd64(SB)
    11  
    12  // When building with -buildmode=(c-shared or c-archive), this
    13  // symbol is called.
    14  TEXT _rt0_amd64_windows_lib(SB),NOSPLIT,$0
    15  	JMP	_rt0_amd64_lib(SB)
    16  

View as plain text