Text file src/crypto/internal/fips140/check/checktest/asm_amd64.s

     1  // Copyright 2024 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  //go:build !purego
     6  
     7  #include "textflag.h"
     8  
     9  DATA StaticData<>(SB)/4, $10
    10  GLOBL StaticData<>(SB), NOPTR, $4
    11  
    12  TEXT StaticText<>(SB), $0
    13  	RET
    14  
    15  TEXT ·PtrStaticData(SB), $0-8
    16  	MOVQ $StaticData<>(SB), AX
    17  	MOVQ AX, ret+0(FP)
    18  	RET
    19  
    20  TEXT ·PtrStaticText(SB), $0-8
    21  	MOVQ $StaticText<>(SB), AX
    22  	MOVQ AX, ret+0(FP)
    23  	RET
    24  

View as plain text