github.com/primecitizens/pcz/std@v0.2.1/builtin/float/mode_unsupported.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  //go:build pcz && !(amd64 || arm64 || 386)
     5  
     6  package stdfloat
     7  
     8  type FPUMode uint8
     9  
    10  func SetFPUMode(mode FPUMode) {}
    11  func GetFPUMode() FPUMode     { return 0 }