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
7a6164d4
Commit
7a6164d4
authored
Mar 10, 2006
by
J"orn Rennecke
Committed by
Joern Rennecke
Mar 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* struct-equiv.c (rtx_equiv_p): Fix POST_MODIFY case.
From-SVN: r111929
parent
5d54b732
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
gcc/ChangeLog
+4
-0
gcc/struct-equiv.c
+2
-6
No files found.
gcc/ChangeLog
View file @
7a6164d4
2006
-
03
-
10
J
"orn Rennecke <joern.rennecke@st.com>
* struct-equiv.c (rtx_equiv_p): Fix POST_MODIFY case.
2006-03-09 Andrew Pinski <pinskia@physics.uc.edu>
* tree-ssa-phiopt.c (tree_ssa_phiopt): Add cfgchanged variable.
...
...
gcc/struct-equiv.c
View file @
7a6164d4
...
...
@@ -570,17 +570,13 @@ rtx_equiv_p (rtx *xp, rtx y, int rvalue, struct equiv_info *info)
return
false
;
x_dest1
=
XEXP
(
x
,
0
);
/* validate_change might have changed the destination. Put it back
so that we can do a
valid source match
. */
so that we can do a
proper match for its role a an input
. */
XEXP
(
x
,
0
)
=
x_dest0
;
if
(
!
rtx_equiv_p
(
&
XEXP
(
x
,
1
),
XEXP
(
y
,
1
),
0
,
info
))
if
(
!
rtx_equiv_p
(
&
XEXP
(
x
,
0
),
XEXP
(
y
,
0
),
1
,
info
))
return
false
;
gcc_assert
(
x_dest1
==
XEXP
(
x
,
0
));
/* Process source. */
return
rtx_equiv_p
(
&
XEXP
(
x
,
1
),
XEXP
(
y
,
1
),
1
,
info
);
if
(
!
rtx_equiv_p
(
&
XEXP
(
x
,
0
),
XEXP
(
y
,
0
),
0
,
info
))
return
false
;
/* Process both subexpressions as inputs. */
break
;
}
case
CLOBBER
:
gcc_assert
(
rvalue
<
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