Source File
modf_arm64.s
Belonging Package
math
// Copyright 2016 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.#include "textflag.h"// func Modf(f float64) (int float64, frac float64)TEXT ·Modf(SB),NOSPLIT,$0MOVD f+0(FP), R0FMOVD R0, F0FRINTZD F0, F1FMOVD F1, int+8(FP)FSUBD F1, F0FMOVD F0, R1AND $(1<<63), R0ORR R0, R1 // must have same signMOVD R1, frac+16(FP)RET
The pages are generated with Golds v0.2.8-preview. (GOOS=darwin GOARCH=arm64)