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
0ae04173
Commit
0ae04173
authored
Feb 07, 2011
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ld: fix build (uvlong vs uint64 conflict on freebsd)
R=rsc CC=golang-dev
https://golang.org/cl/4023071
parent
fb559415
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
l.h
src/cmd/8l/l.h
+1
-1
symtab.c
src/cmd/ld/symtab.c
+1
-1
No files found.
src/cmd/8l/l.h
View file @
0ae04173
...
@@ -365,7 +365,7 @@ void listinit(void);
...
@@ -365,7 +365,7 @@ void listinit(void);
Sym
*
lookup
(
char
*
,
int
);
Sym
*
lookup
(
char
*
,
int
);
void
lputb
(
int32
);
void
lputb
(
int32
);
void
lputl
(
int32
);
void
lputl
(
int32
);
void
vputl
(
u
vlong
);
void
vputl
(
u
int64
);
void
strnput
(
char
*
,
int
);
void
strnput
(
char
*
,
int
);
void
main
(
int
,
char
*
[]);
void
main
(
int
,
char
*
[]);
void
*
mal
(
uint32
);
void
*
mal
(
uint32
);
...
...
src/cmd/ld/symtab.c
View file @
0ae04173
...
@@ -260,7 +260,7 @@ vputb(uint64 v)
...
@@ -260,7 +260,7 @@ vputb(uint64 v)
}
}
void
void
vputl
(
u
vlong
v
)
vputl
(
u
int64
v
)
{
{
lputl
(
v
);
lputl
(
v
);
lputl
(
v
>>
32
);
lputl
(
v
>>
32
);
...
...
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