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
54552651
Commit
54552651
authored
Dec 30, 1996
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(subst_stack_regs_pat): Set src_note explicitly, instead
of using invalid aggregate initialization. From-SVN: r13345
parent
a7596338
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
gcc/reg-stack.c
+5
-1
No files found.
gcc/reg-stack.c
View file @
54552651
...
...
@@ -2363,9 +2363,13 @@ subst_stack_regs_pat (insn, regstack, pat)
src2_note
=
find_regno_note
(
insn
,
REG_DEAD
,
REGNO
(
*
src2
));
{
rtx
src_note
[
]
=
{
0
,
src1_note
,
src2_note
}
;
rtx
src_note
[
3
]
;
int
i
;
src_note
[
0
]
=
0
;
src_note
[
1
]
=
src1_note
;
src_note
[
2
]
=
src2_note
;
if
(
STACK_REG_P
(
*
src1
))
replace_reg
(
src1
,
get_hard_regnum
(
regstack
,
*
src1
));
if
(
STACK_REG_P
(
*
src2
))
...
...
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