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
24948ccc
Commit
24948ccc
authored
Sep 12, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Sep 12, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't try to make autoincs with the stack pointer
From-SVN: r36370
parent
a210651e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
gcc/ChangeLog
+5
-0
gcc/flow.c
+1
-0
No files found.
gcc/ChangeLog
View file @
24948ccc
2000-09-12 Bernd Schmidt <bernds@redhat.co.uk>
* flow.c (try_pre_increment_1): Don't do anything to sets of the stack
pointer.
2000-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2000-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* builtins.c (built_in_decls): New array.
* builtins.c (built_in_decls): New array.
...
...
gcc/flow.c
View file @
24948ccc
...
@@ -5699,6 +5699,7 @@ try_pre_increment_1 (pbi, insn)
...
@@ -5699,6 +5699,7 @@ try_pre_increment_1 (pbi, insn)
int
regno
=
REGNO
(
SET_DEST
(
x
));
int
regno
=
REGNO
(
SET_DEST
(
x
));
rtx
y
=
pbi
->
reg_next_use
[
regno
];
rtx
y
=
pbi
->
reg_next_use
[
regno
];
if
(
y
!=
0
if
(
y
!=
0
&&
SET_DEST
(
x
)
!=
stack_pointer_rtx
&&
BLOCK_NUM
(
y
)
==
BLOCK_NUM
(
insn
)
&&
BLOCK_NUM
(
y
)
==
BLOCK_NUM
(
insn
)
/* Don't do this if the reg dies, or gets set in y; a standard addressing
/* Don't do this if the reg dies, or gets set in y; a standard addressing
mode would be better. */
mode would be better. */
...
...
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