Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
binutils-gdb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastien Michelland
binutils-gdb
Commits
a597d2d3
Commit
a597d2d3
authored
13 years ago
by
Alan Modra
Browse files
Options
Downloads
Patches
Plain Diff
cpu/
* mt.opc (print_dollarhex): Trim values to 32 bits. opcodes/ * mt-dis.c: Regenerate.
parent
3f26eb3a
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cpu/ChangeLog
+4
-0
4 additions, 0 deletions
cpu/ChangeLog
cpu/mt.opc
+2
-2
2 additions, 2 deletions
cpu/mt.opc
opcodes/ChangeLog
+4
-0
4 additions, 0 deletions
opcodes/ChangeLog
opcodes/mt-dis.c
+1
-1
1 addition, 1 deletion
opcodes/mt-dis.c
with
11 additions
and
3 deletions
cpu/ChangeLog
+
4
−
0
View file @
a597d2d3
2012-02-27 Alan Modra <amodra@gmail.com>
* mt.opc (print_dollarhex): Trim values to 32 bits.
2011-12-15 Nick Clifton <nickc@redhat.com>
2011-12-15 Nick Clifton <nickc@redhat.com>
* frv.opc (parse_uhi16): Fix handling of %hi operator on 64-bit
* frv.opc (parse_uhi16): Fix handling of %hi operator on 64-bit
...
...
This diff is collapsed.
Click to expand it.
cpu/mt.opc
+
2
−
2
View file @
a597d2d3
/* Morpho Technologies mRISC opcode support, for GNU Binutils. -*- C -*-
/* Morpho Technologies mRISC opcode support, for GNU Binutils. -*- C -*-
Copyright 2001, 2007, 2008, 2009 Free Software Foundation, Inc.
Copyright 2001, 2007, 2008, 2009
, 2012
Free Software Foundation, Inc.
Contributed by Red Hat Inc; developed under contract from
Contributed by Red Hat Inc; developed under contract from
Morpho Technologies.
Morpho Technologies.
...
@@ -447,7 +447,7 @@ print_dollarhex (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED,
...
@@ -447,7 +447,7 @@ print_dollarhex (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED,
{
{
disassemble_info *info = (disassemble_info *) dis_info;
disassemble_info *info = (disassemble_info *) dis_info;
info->fprintf_func (info->stream, "$%lx", value);
info->fprintf_func (info->stream, "$%lx", value
& 0xffffffff
);
if (0)
if (0)
print_normal (cd, dis_info, value, attrs, pc, length);
print_normal (cd, dis_info, value, attrs, pc, length);
...
...
This diff is collapsed.
Click to expand it.
opcodes/ChangeLog
+
4
−
0
View file @
a597d2d3
2012-02-27 Alan Modra <amodra@gmail.com>
* mt-dis.c: Regenerate.
2012-02-27 Alan Modra <amodra@gmail.com>
2012-02-27 Alan Modra <amodra@gmail.com>
* v850-opc.c (extract_v8): Rearrange to make it obvious this
* v850-opc.c (extract_v8): Rearrange to make it obvious this
...
...
This diff is collapsed.
Click to expand it.
opcodes/mt-dis.c
+
1
−
1
View file @
a597d2d3
...
@@ -72,7 +72,7 @@ print_dollarhex (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED,
...
@@ -72,7 +72,7 @@ print_dollarhex (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED,
{
{
disassemble_info
*
info
=
(
disassemble_info
*
)
dis_info
;
disassemble_info
*
info
=
(
disassemble_info
*
)
dis_info
;
info
->
fprintf_func
(
info
->
stream
,
"$%lx"
,
value
);
info
->
fprintf_func
(
info
->
stream
,
"$%lx"
,
value
&
0xffffffff
);
if
(
0
)
if
(
0
)
print_normal
(
cd
,
dis_info
,
value
,
attrs
,
pc
,
length
);
print_normal
(
cd
,
dis_info
,
value
,
attrs
,
pc
,
length
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment