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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastien Michelland
binutils-gdb
Commits
dc4c54bb
Commit
dc4c54bb
authored
21 years ago
by
Nick Clifton
Browse files
Options
Downloads
Patches
Plain Diff
Make 'insn' argument of iq2000_cgen_insn_supported be const.
parent
773df3e5
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
cpu/ChangeLog
+4
-0
4 additions, 0 deletions
cpu/ChangeLog
cpu/iq2000.opc
+3
-3
3 additions, 3 deletions
cpu/iq2000.opc
with
7 additions
and
3 deletions
cpu/ChangeLog
+
4
−
0
View file @
dc4c54bb
2004-05-15 Nick Clifton <nickc@redhat.com>
* iq2000.opc (iq2000_cgen_insn_supported): Make 'insn' argument const.
2004-03-30 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
2004-03-30 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
* m32r.opc (parse_hi16): Fixed shigh(0xffff8000) bug.
* m32r.opc (parse_hi16): Fixed shigh(0xffff8000) bug.
...
...
This diff is collapsed.
Click to expand it.
cpu/iq2000.opc
+
3
−
3
View file @
dc4c54bb
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
instructions have same mnemonics but different functionality. */
instructions have same mnemonics but different functionality. */
#define CGEN_VALIDATE_INSN_SUPPORTED
#define CGEN_VALIDATE_INSN_SUPPORTED
extern int iq2000_cgen_insn_supported (CGEN_CPU_DESC cd, CGEN_INSN *insn);
extern int iq2000_cgen_insn_supported (CGEN_CPU_DESC cd,
const
CGEN_INSN *insn);
/* -- asm.c */
/* -- asm.c */
static const char * parse_mimm PARAMS ((CGEN_CPU_DESC, const char **, int, long *));
static const char * parse_mimm PARAMS ((CGEN_CPU_DESC, const char **, int, long *));
...
@@ -60,11 +60,11 @@ static const char * parse_imm PARAMS ((CGEN_CPU_DESC, const char **, int, unsig
...
@@ -60,11 +60,11 @@ static const char * parse_imm PARAMS ((CGEN_CPU_DESC, const char **, int, unsig
static const char * parse_hi16 PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *));
static const char * parse_hi16 PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *));
static const char * parse_lo16 PARAMS ((CGEN_CPU_DESC, const char **, int, long *));
static const char * parse_lo16 PARAMS ((CGEN_CPU_DESC, const char **, int, long *));
/* Special check to ensure that instruction exists for given machine */
/* Special check to ensure that instruction exists for given machine
.
*/
int
int
iq2000_cgen_insn_supported (cd, insn)
iq2000_cgen_insn_supported (cd, insn)
CGEN_CPU_DESC cd;
CGEN_CPU_DESC cd;
CGEN_INSN *insn;
const
CGEN_INSN *insn;
{
{
int machs = cd->machs;
int machs = cd->machs;
...
...
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