Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
f0d174b7
Commit
f0d174b7
authored
Nov 12, 2010
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gc: fix arm build
R=ken2 CC=golang-dev
https://golang.org/cl/3074041
parent
fb784785
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
builtin.c.boot
src/cmd/gc/builtin.c.boot
+2
-0
runtime.go
src/cmd/gc/runtime.go
+2
-0
No files found.
src/cmd/gc/builtin.c.boot
View file @
f0d174b7
...
...
@@ -86,7 +86,9 @@ char *runtimeimport =
"func \"\".int64mod (? int64, ? int64) int64\n"
"func \"\".uint64mod (? uint64, ? uint64) uint64\n"
"func \"\".float64toint64 (? float64) int64\n"
"func \"\".float64touint64 (? float64) uint64\n"
"func \"\".int64tofloat64 (? int64) float64\n"
"func \"\".uint64tofloat64 (? uint64) float64\n"
"func \"\".complex128div (num complex128, den complex128) complex128\n"
"\n"
"$$\n";
...
...
src/cmd/gc/runtime.go
View file @
f0d174b7
...
...
@@ -117,6 +117,8 @@ func uint64div(uint64, uint64) uint64
func
int64mod
(
int64
,
int64
)
int64
func
uint64mod
(
uint64
,
uint64
)
uint64
func
float64toint64
(
float64
)
int64
func
float64touint64
(
float64
)
uint64
func
int64tofloat64
(
int64
)
float64
func
uint64tofloat64
(
uint64
)
float64
func
complex128div
(
num
complex128
,
den
complex128
)
(
quo
complex128
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment