Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
a0f0e963
Commit
a0f0e963
authored
Feb 07, 2003
by
Segher Boessenkool
Committed by
Richard Henderson
Feb 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* genoutput.c (output_get_insn_name): Handle NOOP_MOVE_INSN_CODE.
From-SVN: r62552
parent
46847aa6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+4
-0
gcc/genoutput.c
+4
-1
No files found.
gcc/ChangeLog
View file @
a0f0e963
2003
-
02
-
07
Segher
Boessenkool
<
segher
@koffie
.
nl
>
*
genoutput
.
c
(
output_get_insn_name
)
:
Handle
NOOP_MOVE_INSN_CODE
.
2003
-
02
-
07
Roger
Sayle
<
roger
@eyesopen
.
com
>
*
builtin
-
types
.
def
(
BT_FN_FLOAT_FLOAT_FLOAT
)
:
New
built
-
in
type
.
...
...
gcc/genoutput.c
View file @
a0f0e963
...
...
@@ -419,7 +419,10 @@ output_get_insn_name ()
printf
(
"get_insn_name (code)
\n
"
);
printf
(
" int code;
\n
"
);
printf
(
"{
\n
"
);
printf
(
" return insn_data[code].name;
\n
"
);
printf
(
" if (code == NOOP_MOVE_INSN_CODE)
\n
"
);
printf
(
" return
\"
NOOP_MOVE
\"
;
\n
"
);
printf
(
" else
\n
"
);
printf
(
" return insn_data[code].name;
\n
"
);
printf
(
"}
\n
"
);
}
...
...
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