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

Side by Side Diff: src/pkg/math/Makefile

Issue 1740043: code review 1740043: math: amd64 version of log (Closed)
Patch Set: code review 1740043: math: amd64 version of log Created 13 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 | src/pkg/math/log.go » ('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 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 include ../../Make.$(GOARCH) 5 include ../../Make.$(GOARCH)
6 6
7 TARG=math 7 TARG=math
8 8
9 OFILES_amd64=\ 9 OFILES_amd64=\
10 exp_amd64.$O\ 10 exp_amd64.$O\
11 fabs_amd64.$O\ 11 fabs_amd64.$O\
12 fdim_amd64.$O\ 12 fdim_amd64.$O\
13 log_amd64.$O\
13 sqrt_amd64.$O\ 14 sqrt_amd64.$O\
14 15
15 OFILES_386=\ 16 OFILES_386=\
16 asin_386.$O\ 17 asin_386.$O\
17 atan_386.$O\ 18 atan_386.$O\
18 atan2_386.$O\ 19 atan2_386.$O\
19 exp_386.$O\ 20 exp_386.$O\
20 exp2_386.$O\ 21 exp2_386.$O\
21 expm1_386.$O\ 22 expm1_386.$O\
22 fabs_386.$O\ 23 fabs_386.$O\
23 floor_386.$O\ 24 floor_386.$O\
24 frexp_386.$O\ 25 frexp_386.$O\
25 fmod_386.$O\ 26 fmod_386.$O\
26 hypot_386.$O\ 27 hypot_386.$O\
27 ldexp_386.$O\ 28 ldexp_386.$O\
28 log_386.$O\ 29 log_386.$O\
30 log10_386.$O\
29 log1p_386.$O\ 31 log1p_386.$O\
30 modf_386.$O\ 32 modf_386.$O\
31 remainder_386.$O\ 33 remainder_386.$O\
32 sin_386.$O\ 34 sin_386.$O\
33 sincos_386.$O\ 35 sincos_386.$O\
34 sqrt_386.$O\ 36 sqrt_386.$O\
35 tan_386.$O\ 37 tan_386.$O\
36 38
37 OFILES=\ 39 OFILES=\
38 $(OFILES_$(GOARCH)) 40 $(OFILES_$(GOARCH))
(...skipping 17 matching lines...) Expand all
56 fdim.go\ 58 fdim.go\
57 floor.go\ 59 floor.go\
58 fmod.go\ 60 fmod.go\
59 frexp.go\ 61 frexp.go\
60 gamma.go\ 62 gamma.go\
61 hypot.go\ 63 hypot.go\
62 hypot_port.go\ 64 hypot_port.go\
63 j0.go\ 65 j0.go\
64 j1.go\ 66 j1.go\
65 jn.go\ 67 jn.go\
66 logb.go\
67 lgamma.go\ 68 lgamma.go\
68 ldexp.go\ 69 ldexp.go\
69 log.go\ 70 log.go\
71 log10.go\
70 log1p.go\ 72 log1p.go\
73 logb.go\
71 modf.go\ 74 modf.go\
72 nextafter.go\ 75 nextafter.go\
73 pow.go\ 76 pow.go\
74 pow10.go\ 77 pow10.go\
75 remainder.go\ 78 remainder.go\
76 signbit.go\ 79 signbit.go\
77 sin.go\ 80 sin.go\
78 sincos.go\ 81 sincos.go\
79 sinh.go\ 82 sinh.go\
80 sqrt.go\ 83 sqrt.go\
81 sqrt_port.go\ 84 sqrt_port.go\
82 tan.go\ 85 tan.go\
83 tanh.go\ 86 tanh.go\
84 unsafe.go\ 87 unsafe.go\
85 88
86 NOGOFILES=\ 89 NOGOFILES=\
87 $(subst _$(GOARCH).$O,.go,$(OFILES_$(GOARCH))) 90 $(subst _$(GOARCH).$O,.go,$(OFILES_$(GOARCH)))
88 91
89 GOFILES=\ 92 GOFILES=\
90 $(filter-out $(NOGOFILES),$(ALLGOFILES))\ 93 $(filter-out $(NOGOFILES),$(ALLGOFILES))\
91 $(subst .go,_decl.go,$(NOGOFILES))\ 94 $(subst .go,_decl.go,$(NOGOFILES))\
92 95
93 include ../../Make.pkg 96 include ../../Make.pkg
OLDNEW
« no previous file with comments | « no previous file | src/pkg/math/log.go » ('j') | no next file with comments »

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