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
7b7bceeb
Commit
7b7bceeb
authored
May 23, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
entered into RCS
From-SVN: r1063
parent
eea62639
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/genconfig.c
+4
-4
No files found.
gcc/genconfig.c
View file @
7b7bceeb
...
...
@@ -35,8 +35,8 @@ extern void free ();
extern
rtx
read_rtx
();
/* flags to determine output of machine description dependent #define's. */
static
int
max_recog_operands
;
static
int
max_dup_operands
;
static
int
max_recog_operands
;
/* Largest operand number seen. */
static
int
max_dup_operands
;
/* Largest number of match_dup in any insn. */
static
int
max_clobbers_per_insn
;
static
int
register_constraint_flag
;
static
int
have_cc0_flag
;
...
...
@@ -278,7 +278,7 @@ main (argc, argv)
from the machine description file `md'. */
\n\n
"
);
/* Allow at least 10 operands for the sake of asm constructs. */
max_recog_operands
=
10
;
max_recog_operands
=
9
;
/* We will add 1 later. */
max_dup_operands
=
1
;
/* Read the machine description. */
...
...
@@ -301,7 +301,7 @@ from the machine description file `md'. */\n\n");
gen_peephole
(
desc
);
}
printf
(
"
\n
#define MAX_RECOG_OPERANDS %d
\n
"
,
max_recog_operands
);
printf
(
"
\n
#define MAX_RECOG_OPERANDS %d
\n
"
,
max_recog_operands
+
1
);
printf
(
"
\n
#define MAX_DUP_OPERANDS %d
\n
"
,
max_dup_operands
);
...
...
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