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
8fabbfe6
Commit
8fabbfe6
authored
Aug 14, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(max_operand_1): Treat MATCH_PAR_DUP just like MATCH_OP_DUP.
(gen_exp): Treat it like MATCH_PARALLEL here. From-SVN: r1832
parent
13ed0ef0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
gcc/genemit.c
+2
-1
No files found.
gcc/genemit.c
View file @
8fabbfe6
...
@@ -83,7 +83,7 @@ max_operand_1 (x)
...
@@ -83,7 +83,7 @@ max_operand_1 (x)
if
(
code
==
MATCH_OPERAND
||
code
==
MATCH_OPERATOR
if
(
code
==
MATCH_OPERAND
||
code
==
MATCH_OPERATOR
||
code
==
MATCH_PARALLEL
)
||
code
==
MATCH_PARALLEL
)
max_opno
=
MAX
(
max_opno
,
XINT
(
x
,
0
));
max_opno
=
MAX
(
max_opno
,
XINT
(
x
,
0
));
if
(
code
==
MATCH_DUP
||
code
==
MATCH_OP_DUP
)
if
(
code
==
MATCH_DUP
||
code
==
MATCH_OP_DUP
||
code
==
MATCH_PAR_DUP
)
max_dup_opno
=
MAX
(
max_dup_opno
,
XINT
(
x
,
0
));
max_dup_opno
=
MAX
(
max_dup_opno
,
XINT
(
x
,
0
));
fmt
=
GET_RTX_FORMAT
(
code
);
fmt
=
GET_RTX_FORMAT
(
code
);
...
@@ -182,6 +182,7 @@ gen_exp (x)
...
@@ -182,6 +182,7 @@ gen_exp (x)
return
;
return
;
case
MATCH_PARALLEL
:
case
MATCH_PARALLEL
:
case
MATCH_PAR_DUP
:
printf
(
"operand%d"
,
XINT
(
x
,
0
));
printf
(
"operand%d"
,
XINT
(
x
,
0
));
return
;
return
;
...
...
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