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
a29304bf
Commit
a29304bf
authored
May 04, 2012
by
Shenghou Ma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: fix c compiler warning
R=golang-dev, rsc CC=golang-dev
https://golang.org/cl/6185047
parent
018bcc35
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
vlrt_arm.c
src/pkg/runtime/vlrt_arm.c
+2
-0
No files found.
src/pkg/runtime/vlrt_arm.c
View file @
a29304bf
...
...
@@ -197,12 +197,14 @@ void
runtime
·
int64tofloat64
(
Vlong
y
,
double
d
)
{
d
=
_v2d
(
y
);
USED
(
&
d
);
// FLUSH
}
void
runtime
·
uint64tofloat64
(
Vlong
y
,
double
d
)
{
d
=
_ul2d
(
y
.
hi
)
*
4294967296
.
+
_ul2d
(
y
.
lo
);
USED
(
&
d
);
// FLUSH
}
static
void
...
...
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