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
eaa2a364
Commit
eaa2a364
authored
Dec 19, 2008
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libmach: always print 0x on hex numbers
R=r DELTA=3 (0 added, 0 deleted, 3 changed) OCL=21558 CL=21558
parent
83348f95
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
8db.c
src/libmach_amd64/8db.c
+2
-2
machdata.c
src/libmach_amd64/machdata.c
+1
-1
No files found.
src/libmach_amd64/8db.c
View file @
eaa2a364
...
@@ -1931,7 +1931,7 @@ immediate(Instr *ip, vlong val)
...
@@ -1931,7 +1931,7 @@ immediate(Instr *ip, vlong val)
w
=
-
w
;
w
=
-
w
;
if
(
issymref
(
ip
,
&
s
,
w
,
val
))
{
if
(
issymref
(
ip
,
&
s
,
w
,
val
))
{
if
(
w
)
if
(
w
)
bprint
(
ip
,
"%s+%lux(SB)"
,
s
.
name
,
w
);
bprint
(
ip
,
"%s+%
#
lux(SB)"
,
s
.
name
,
w
);
else
else
bprint
(
ip
,
"%s(SB)"
,
s
.
name
);
bprint
(
ip
,
"%s(SB)"
,
s
.
name
);
return
;
return
;
...
@@ -1942,7 +1942,7 @@ immediate(Instr *ip, vlong val)
...
@@ -1942,7 +1942,7 @@ immediate(Instr *ip, vlong val)
if (w < 0)
if (w < 0)
w = -w;
w = -w;
if (w < 4096) {
if (w < 4096) {
bprint(ip, "%s-%lux(SB)", s.name, w);
bprint(ip, "%s-%
#
lux(SB)", s.name, w);
return;
return;
}
}
}
}
...
...
src/libmach_amd64/machdata.c
View file @
eaa2a364
...
@@ -113,7 +113,7 @@ symoff(char *buf, int n, uvlong v, int space)
...
@@ -113,7 +113,7 @@ symoff(char *buf, int n, uvlong v, int space)
if
(
s
.
type
!=
't'
&&
s
.
type
!=
'T'
&&
delta
>=
4096
)
if
(
s
.
type
!=
't'
&&
s
.
type
!=
'T'
&&
delta
>=
4096
)
return
snprint
(
buf
,
n
,
"%llux"
,
v
);
return
snprint
(
buf
,
n
,
"%llux"
,
v
);
else
if
(
delta
)
else
if
(
delta
)
return
snprint
(
buf
,
n
,
"%s+%lux"
,
s
.
name
,
delta
);
return
snprint
(
buf
,
n
,
"%s+%
#
lux"
,
s
.
name
,
delta
);
else
else
return
snprint
(
buf
,
n
,
"%s"
,
s
.
name
);
return
snprint
(
buf
,
n
,
"%s"
,
s
.
name
);
}
}
...
...
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