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
bd77ba51
Commit
bd77ba51
authored
Jul 11, 2001
by
Richard Sandiford
Committed by
Richard Sandiford
Jul 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* simplify-rtx.c (simplify_gen_subreg): Return null for QUEUED rtxes.
From-SVN: r43933
parent
4a1b6176
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
gcc/ChangeLog
+4
-0
gcc/simplify-rtx.c
+3
-0
No files found.
gcc/ChangeLog
View file @
bd77ba51
2001-07-11 Richard Sandiford <rsandifo@redhat.com>
* simplify-rtx.c (simplify_gen_subreg): Return null for QUEUED rtxes.
2001-07-11 Richard Sandiford <rsandifo@redhat.com>
* config/mips/mips.c (gen_int_relational): Tell the caller not to
reverse a branch if a NE comparison is implemented with GTU.
...
...
gcc/simplify-rtx.c
View file @
bd77ba51
...
...
@@ -2446,6 +2446,9 @@ simplify_gen_subreg (outermode, op, innermode, byte)
||
byte
>=
GET_MODE_SIZE
(
innermode
))
abort
();
if
(
GET_CODE
(
op
)
==
QUEUED
)
return
NULL_RTX
;
new
=
simplify_subreg
(
outermode
,
op
,
innermode
,
byte
);
if
(
new
)
return
new
;
...
...
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