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
974f4146
Commit
974f4146
authored
Sep 17, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(recog_for_combine): Always reject a PARALLEL containing our special
CLOBBER. From-SVN: r5348
parent
f3becefd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
gcc/combine.c
+9
-0
No files found.
gcc/combine.c
View file @
974f4146
...
@@ -7875,6 +7875,15 @@ recog_for_combine (pnewpat, insn, pnotes)
...
@@ -7875,6 +7875,15 @@ recog_for_combine (pnewpat, insn, pnotes)
int
i
;
int
i
;
rtx
notes
=
0
;
rtx
notes
=
0
;
/* If PAT is a PARALLEL, check to see if it contains the CLOBBER
we use to indicate that something didn't match. If we find such a
thing, force rejection. */
if
(
GET_CODE
(
pat
)
==
CLOBBER
)
for
(
i
=
XVECLEN
(
pat
,
0
)
-
1
;
i
>=
0
;
i
--
)
if
(
GET_CODE
(
XVECEXP
(
pat
,
i
,
0
))
==
CLOBBER
&&
XEXP
(
XVECEXP
(
pat
,
i
,
0
),
0
)
==
const0_rtx
)
return
-
1
;
/* Is the result of combination a valid instruction? */
/* Is the result of combination a valid instruction? */
insn_code_number
=
recog
(
pat
,
insn
,
&
num_clobbers_to_add
);
insn_code_number
=
recog
(
pat
,
insn
,
&
num_clobbers_to_add
);
...
...
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