...

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

Documentation: crypto/internal/fips140/check/checktest

     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
     9DATA StaticData<>(SB)/4, $10
    10GLOBL StaticData<>(SB), NOPTR, $4
    11
    12TEXT StaticText<>(SB), $0
    13	RET
    14
    15TEXT ·PtrStaticData(SB), $0-4
    16	MOVL $StaticData<>(SB), AX
    17	MOVL AX, ret+0(FP)
    18	RET
    19
    20TEXT ·PtrStaticText(SB), $0-4
    21	MOVL $StaticText<>(SB), AX
    22	MOVL AX, ret+0(FP)
    23	RET

View as plain text