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
a3202ebb
Commit
a3202ebb
authored
18 years ago
by
Daniel Jacobowitz
Browse files
Options
Downloads
Patches
Plain Diff
* h8300-dis.c (bfd_h8_disassemble): Add missing consts.
parent
fffbd2ef
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
opcodes/ChangeLog
+4
-0
4 additions, 0 deletions
opcodes/ChangeLog
opcodes/h8300-dis.c
+3
-3
3 additions, 3 deletions
opcodes/h8300-dis.c
with
7 additions
and
3 deletions
opcodes/ChangeLog
+
4
−
0
View file @
a3202ebb
2006-10-26 Daniel Jacobowitz <dan@codesourcery.com>
* h8300-dis.c (bfd_h8_disassemble): Add missing consts.
2006-10-25 Trevor Smigiel <Trevor_Smigiel@playstation.sony.com>
Yukishige Shibata <shibata@rd.scei.sony.co.jp>
Nobuhisa Fujinami <fnami@rd.scei.sony.co.jp>
...
...
This diff is collapsed.
Click to expand it.
opcodes/h8300-dis.c
+
3
−
3
View file @
a3202ebb
...
...
@@ -362,7 +362,7 @@ bfd_h8_disassemble (bfd_vma addr, disassemble_info *info, int mach)
for
(
qi
=
h8_instructions
;
qi
->
opcode
->
name
;
qi
++
)
{
const
struct
h8_opcode
*
q
=
qi
->
opcode
;
op_type
*
nib
=
q
->
data
.
nib
;
const
op_type
*
nib
=
q
->
data
.
nib
;
unsigned
int
len
=
0
;
while
(
1
)
...
...
@@ -640,7 +640,7 @@ bfd_h8_disassemble (bfd_vma addr, disassemble_info *info, int mach)
}
if
(
CONST_STRNEQ
(
q
->
name
,
"mova"
))
{
op_type
*
args
=
q
->
args
.
nib
;
const
op_type
*
args
=
q
->
args
.
nib
;
if
(
args
[
1
]
==
(
op_type
)
E
)
{
...
...
@@ -666,7 +666,7 @@ bfd_h8_disassemble (bfd_vma addr, disassemble_info *info, int mach)
}
/* Fill in the args. */
{
op_type
*
args
=
q
->
args
.
nib
;
const
op_type
*
args
=
q
->
args
.
nib
;
int
hadone
=
0
;
int
nargs
;
...
...
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