Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1972)

Side by Side Diff: src/pkg/math/abs_386.s

Issue 5158043: code review 5158043: math: remove the leading F from Fabs etc. (Closed)
Patch Set: diff -r bc60e3827d04 https://go.googlecode.com/hg/ Created 13 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/math/abs.go ('k') | src/pkg/math/abs_amd64.s » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 The Go Authors. All rights reserved. 1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // func Fabs(x float64) float64 5 // func Abs(x float64) float64
6 TEXT ·Fabs(SB),7,$0 6 TEXT ·Abs(SB),7,$0
7 FMOVD x+0(FP), F0 // F0=x 7 FMOVD x+0(FP), F0 // F0=x
8 FABS // F0=|x| 8 FABS // F0=|x|
9 FMOVDP F0, r+8(FP) 9 FMOVDP F0, r+8(FP)
10 RET 10 RET
OLDNEW
« no previous file with comments | « src/pkg/math/abs.go ('k') | src/pkg/math/abs_amd64.s » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b