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
74186471
Commit
74186471
authored
Jun 05, 1998
by
John Carr
Committed by
John Carr
Jun 05, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alias.c (find_base_value): Avoid reading past end of reg_base_value.
From-SVN: r20240
parent
989f090c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
gcc/ChangeLog
+4
-0
gcc/alias.c
+1
-0
No files found.
gcc/ChangeLog
View file @
74186471
Fri Jun 5 09:03:22 1998 John Carr <jfc@mit.edu>
* alias.c (find_base_value): Avoid reading past end of reg_base_value.
Fri Jun 5 03:05:34 1998 Richard Henderson <rth@cygnus.com>
Fri Jun 5 03:05:34 1998 Richard Henderson <rth@cygnus.com>
* alpha.md (insxh-1): New insxl pattern for combine.
* alpha.md (insxh-1): New insxl pattern for combine.
...
...
gcc/alias.c
View file @
74186471
...
@@ -129,6 +129,7 @@ find_base_value (src)
...
@@ -129,6 +129,7 @@ find_base_value (src)
The test above is not sufficient because the scheduler may move
The test above is not sufficient because the scheduler may move
a copy out of an arg reg past the NOTE_INSN_FUNCTION_BEGIN. */
a copy out of an arg reg past the NOTE_INSN_FUNCTION_BEGIN. */
if
(
REGNO
(
src
)
>=
FIRST_PSEUDO_REGISTER
if
(
REGNO
(
src
)
>=
FIRST_PSEUDO_REGISTER
&&
REGNO
(
src
)
<
reg_base_value_size
&&
reg_base_value
[
REGNO
(
src
)])
&&
reg_base_value
[
REGNO
(
src
)])
return
reg_base_value
[
REGNO
(
src
)];
return
reg_base_value
[
REGNO
(
src
)];
...
...
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