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

Side by Side Diff: src/pkg/big/arith_arm.s

Issue 1752043: code review 1752043: big: attempt to fix arm build (Closed)
Patch Set: code review 1752043: big: attempt to fix arm build Created 14 years, 8 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 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 // This file provides fast assembly versions for the elementary 5 // This file provides fast assembly versions for the elementary
6 // arithmetic operations on vectors implemented in arith.go. 6 // arithmetic operations on vectors implemented in arith.go.
7 7
8 // TODO(gri) Implement these routines. 8 // TODO(gri) Implement these routines.
9 TEXT ·addVV(SB),7,$0 9 TEXT ·addVV(SB),7,$0
10 B ·addVV_g(SB) 10 B ·addVV_g(SB)
(...skipping 15 matching lines...) Expand all
26 26
27 TEXT ·mulAddVWW(SB),7,$0 27 TEXT ·mulAddVWW(SB),7,$0
28 B ·mulAddVWW_g(SB) 28 B ·mulAddVWW_g(SB)
29 29
30 TEXT ·addMulVVW(SB),7,$0 30 TEXT ·addMulVVW(SB),7,$0
31 B ·addMulVVW_g(SB) 31 B ·addMulVVW_g(SB)
32 32
33 TEXT ·divWVW(SB),7,$0 33 TEXT ·divWVW(SB),7,$0
34 B ·divWVW_g(SB) 34 B ·divWVW_g(SB)
35 35
36 TEXT ·divWW(SB),7,$0
37 B ·divWW_g(SB)
38
39 TEXT ·mulWW(SB),7,$0
40 B ·mulWW_g(SB)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

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