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
59d4e481
Commit
59d4e481
authored
Aug 22, 1998
by
Klaus-Georg Adams
Committed by
Jeff Law
Aug 22, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
loop.c (load_mems): Fix initializers.
� * loop.c (load_mems): Fix initializers. From-SVN: r21907
parent
227bfdfb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gcc/loop.c
+6
-2
No files found.
gcc/loop.c
View file @
59d4e481
...
...
@@ -8571,7 +8571,9 @@ load_mems (scan_start, end, loop_top, start)
p
!=
NULL_RTX
;
p
=
next_insn_in_loop
(
p
,
scan_start
,
end
,
loop_top
))
{
rtx_and_int
ri
=
{
p
,
i
};
rtx_and_int
ri
;
ri
.
r
=
p
;
ri
.
i
=
i
;
for_each_rtx
(
&
p
,
replace_loop_mem
,
&
ri
);
}
...
...
@@ -8620,7 +8622,9 @@ load_mems (scan_start, end, loop_top, start)
{
/* Now, we need to replace all references to the previous exit
label with the new one. */
rtx_pair
rr
=
{
end_label
,
label
};
rtx_pair
rr
;
rr
.
r1
=
end_label
;
rr
.
r2
=
label
;
for
(
p
=
start
;
p
!=
end
;
p
=
NEXT_INSN
(
p
))
for_each_rtx
(
&
p
,
replace_label
,
&
rr
);
...
...
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