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
8686336f
Commit
8686336f
authored
Feb 13, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Feb 13, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* regmove.c (kill_value): Handle subregs.
From-SVN: r49748
parent
558740bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
gcc/ChangeLog
+4
-0
gcc/regrename.c
+8
-0
No files found.
gcc/ChangeLog
View file @
8686336f
Wed Feb 13 23:41:15 CET 2002 Jan Hubicka <jh@suse.cz>
* regmove.c (kill_value): Handle subregs.
Wed Feb 13 23:34:30 CET 2002 Jan Hubicka <jh@suse.cz>
* i386.md (mul patterns): Allow memory operand to be first;
...
...
gcc/regrename.c
View file @
8686336f
...
...
@@ -1095,6 +1095,14 @@ kill_value (x, vd)
rtx
x
;
struct
value_data
*
vd
;
{
/* SUBREGS are supposed to have been eliminated by now. But some
ports, e.g. i386 sse, use them to smuggle vector type information
through to instruction selection. Each such SUBREG should simplify,
so if we get a NULL we've done something wrong elsewhere. */
if
(
GET_CODE
(
x
)
==
SUBREG
)
x
=
simplify_subreg
(
GET_MODE
(
x
),
SUBREG_REG
(
x
),
GET_MODE
(
SUBREG_REG
(
x
)),
SUBREG_BYTE
(
x
));
if
(
REG_P
(
x
))
{
unsigned
int
regno
=
REGNO
(
x
);
...
...
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