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
c43a12b5
Commit
c43a12b5
authored
Feb 18, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Feb 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* regrename.c (kill_set_value): Handle subregs properly.
From-SVN: r49838
parent
8910f4aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/regrename.c
+3
-2
No files found.
gcc/ChangeLog
View file @
c43a12b5
Mon Feb 18 11:55:55 CET 2002 Jan Hubicka <jh@suse.cz>
* regrename.c (kill_set_value): Handle subregs properly.
2002-02-18 David Billinghurst <David.Billinghurst@riotinto.com>
* objc/objc-act.c (handle_impent): Remove leading '*'
...
...
gcc/regrename.c
View file @
c43a12b5
...
...
@@ -1186,10 +1186,11 @@ kill_set_value (x, set, data)
void
*
data
;
{
struct
value_data
*
vd
=
data
;
if
(
GET_CODE
(
set
)
!=
CLOBBER
&&
REG_P
(
x
)
)
if
(
GET_CODE
(
set
)
!=
CLOBBER
)
{
kill_value
(
x
,
vd
);
set_value_regno
(
REGNO
(
x
),
GET_MODE
(
x
),
vd
);
if
(
REG_P
(
x
))
set_value_regno
(
REGNO
(
x
),
GET_MODE
(
x
),
vd
);
}
}
...
...
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