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
40dbb05c
Commit
40dbb05c
authored
Sep 16, 2013
by
Richard Sandiford
Committed by
Richard Sandiford
Sep 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cse.c (try_const_anchors): Punt on CC modes.
gcc/ * cse.c (try_const_anchors): Punt on CC modes. From-SVN: r202613
parent
1a11a94f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+4
-0
gcc/cse.c
+5
-0
No files found.
gcc/ChangeLog
View file @
40dbb05c
2013-09-16 Richard Sandiford <rdsandiford@googlemail.com>
* cse.c (try_const_anchors): Punt on CC modes.
2013-09-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* config/vax/constraints.md (T): Add missing CONSTANT_P check.
...
...
gcc/cse.c
View file @
40dbb05c
...
...
@@ -1354,6 +1354,11 @@ try_const_anchors (rtx src_const, enum machine_mode mode)
rtx
lower_exp
=
NULL_RTX
,
upper_exp
=
NULL_RTX
;
unsigned
lower_old
,
upper_old
;
/* CONST_INT is used for CC modes, but we should leave those alone. */
if
(
GET_MODE_CLASS
(
mode
)
==
MODE_CC
)
return
NULL_RTX
;
gcc_assert
(
SCALAR_INT_MODE_P
(
mode
));
if
(
!
compute_const_anchors
(
src_const
,
&
lower_base
,
&
lower_offs
,
&
upper_base
,
&
upper_offs
))
return
NULL_RTX
;
...
...
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