Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
f3ed1ad5
Commit
f3ed1ad5
authored
Mar 08, 2011
by
Anthony Martin
Committed by
Russ Cox
Mar 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
5l, 8l: output missing section symbols
R=rsc CC=golang-dev
https://golang.org/cl/4252067
parent
ce0de422
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
src/cmd/5l/asm.c
src/cmd/5l/asm.c
+3
-0
src/cmd/8l/asm.c
src/cmd/8l/asm.c
+3
-0
No files found.
src/cmd/5l/asm.c
View file @
f3ed1ad5
...
...
@@ -1985,6 +1985,9 @@ genasmsym(void (*put)(Sym*, char*, int, vlong, vlong, int, Sym*))
case
SRODATA
:
case
SDATA
:
case
SELFDATA
:
case
STYPE
:
case
SSTRING
:
case
SGOSTRING
:
if
(
!
s
->
reachable
)
continue
;
put
(
s
,
s
->
name
,
'D'
,
s
->
value
,
s
->
size
,
s
->
version
,
s
->
gotype
);
...
...
src/cmd/8l/asm.c
View file @
f3ed1ad5
...
...
@@ -1167,6 +1167,9 @@ genasmsym(void (*put)(Sym*, char*, int, vlong, vlong, int, Sym*))
case
SELFDATA
:
case
SMACHO
:
case
SMACHOGOT
:
case
STYPE
:
case
SSTRING
:
case
SGOSTRING
:
case
SWINDOWS
:
if
(
!
s
->
reachable
)
continue
;
...
...
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