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
cc30cc14
Commit
cc30cc14
authored
May 04, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
entered into RCS
From-SVN: r885
parent
7bffb68a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
gcc/genextract.c
+5
-6
No files found.
gcc/genextract.c
View file @
cc30cc14
...
...
@@ -306,7 +306,7 @@ print_path (path)
abort
();
}
printf
(
"
insn
"
);
printf
(
"
pat
"
);
for
(
i
=
0
;
i
<
len
;
i
++
)
{
...
...
@@ -436,9 +436,8 @@ from the machine description file `md'. */\n\n");
printf
(
"{
\n
"
);
printf
(
" register rtx *ro = recog_operand;
\n
"
);
printf
(
" register rtx **ro_loc = recog_operand_loc;
\n
"
);
printf
(
" int insn_code = INSN_CODE (insn);
\n
"
);
printf
(
" insn = PATTERN (insn);
\n
"
);
printf
(
" switch (insn_code)
\n
"
);
printf
(
" rtx pat = PATTERN (insn);
\n
"
);
printf
(
" switch (INSN_CODE (insn))
\n
"
);
printf
(
" {
\n
"
);
printf
(
" case -1:
\n
"
);
printf
(
" fatal_insn_not_found (insn);
\n\n
"
);
...
...
@@ -488,8 +487,8 @@ from the machine description file `md'. */\n\n");
printf
(
"#if __GNUC__ > 1 && !defined (bcopy)
\n
"
);
printf
(
"#define bcopy(FROM,TO,COUNT) __builtin_memcpy(TO,FROM,COUNT)
\n
"
);
printf
(
"#endif
\n
"
);
printf
(
" bcopy (&XVECEXP (
insn
, 0, 0), ro,
\n
"
);
printf
(
" sizeof (rtx) * XVECLEN (
insn
, 0));
\n
"
);
printf
(
" bcopy (&XVECEXP (
pat
, 0, 0), ro,
\n
"
);
printf
(
" sizeof (rtx) * XVECLEN (
pat
, 0));
\n
"
);
printf
(
" break;
\n\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