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
1ff136fd
Commit
1ff136fd
authored
Jan 11, 1999
by
Richard Henderson
Committed by
Richard Henderson
Jan 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cse.c (cse_insn): Never prefer (const (constant_p_rtx)).
From-SVN: r24637
parent
fb857ec1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+4
-0
gcc/cse.c
+6
-0
No files found.
gcc/ChangeLog
View file @
1ff136fd
Tue
Jan
12
02
:
53
:
46
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
cse
.
c
(
cse_insn
)
:
Never
prefer
(
const
(
constant_p_rtx
)).
Tue
Jan
12
02
:
36
:
10
PST
1999
Jeff
Law
(
law
@cygnus
.
com
)
*
version
.
c
:
Bump
for
snapshot
.
...
...
gcc/cse.c
View file @
1ff136fd
...
...
@@ -6865,6 +6865,12 @@ cse_insn (insn, libcall_insn)
if
(
src
==
src_folded
)
src_folded
=
0
;
/* Folds of constant_p_rtx are to be preferred, since we do
not wish any to live past CSE. */
if
(
src
&&
GET_CODE
(
src
)
==
CONST
&&
GET_CODE
(
XEXP
(
src
,
0
))
==
CONSTANT_P_RTX
)
src
=
0
;
/* At this point, ELT, if non-zero, points to a class of expressions
equivalent to the source of this SET and SRC, SRC_EQV, SRC_FOLDED,
and SRC_RELATED, if non-zero, each contain additional equivalent
...
...
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