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
9797b9e8
Commit
9797b9e8
authored
Jun 02, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1142
parent
6a5293dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
gcc/combine.c
+3
-1
No files found.
gcc/combine.c
View file @
9797b9e8
...
@@ -3085,7 +3085,9 @@ subst (x, from, to, in_dest, unique_copy)
...
@@ -3085,7 +3085,9 @@ subst (x, from, to, in_dest, unique_copy)
/* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be
/* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be
reversed, do so to avoid needing two sets of patterns for
reversed, do so to avoid needing two sets of patterns for
subtract-and-branch insns. */
subtract-and-branch insns. */
if
(
XEXP
(
x
,
1
)
==
pc_rtx
&&
reversible_comparison_p
(
XEXP
(
x
,
0
)))
if
(
XEXP
(
x
,
1
)
==
pc_rtx
&&
GET_RTX_CLASS
(
GET_CODE
(
XEXP
(
x
,
0
)))
==
'<'
&&
reversible_comparison_p
(
XEXP
(
x
,
0
)))
{
{
SUBST
(
XEXP
(
x
,
0
),
SUBST
(
XEXP
(
x
,
0
),
gen_rtx_combine
(
reverse_condition
(
GET_CODE
(
XEXP
(
x
,
0
))),
gen_rtx_combine
(
reverse_condition
(
GET_CODE
(
XEXP
(
x
,
0
))),
...
...
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