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
a193a6db
Commit
a193a6db
authored
May 12, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(unroll_loop): Only use local_regno for pseudos.
From-SVN: r9641
parent
426cd2f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/unroll.c
+3
-3
No files found.
gcc/unroll.c
View file @
a193a6db
...
@@ -728,7 +728,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before,
...
@@ -728,7 +728,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before,
int
copy_start_luid
=
INSN_LUID
(
copy_start
);
int
copy_start_luid
=
INSN_LUID
(
copy_start
);
int
copy_end_luid
=
INSN_LUID
(
copy_end
);
int
copy_end_luid
=
INSN_LUID
(
copy_end
);
for
(
j
=
0
;
j
<
maxregnum
;
++
j
)
for
(
j
=
FIRST_PSEUDO_REGISTER
;
j
<
maxregnum
;
++
j
)
{
{
int
first_uid
=
regno_first_uid
[
j
];
int
first_uid
=
regno_first_uid
[
j
];
int
last_uid
=
regno_last_uid
[
j
];
int
last_uid
=
regno_last_uid
[
j
];
...
@@ -952,7 +952,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before,
...
@@ -952,7 +952,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before,
if
(
local_label
[
j
])
if
(
local_label
[
j
])
map
->
label_map
[
j
]
=
gen_label_rtx
();
map
->
label_map
[
j
]
=
gen_label_rtx
();
for
(
j
=
0
;
j
<
maxregnum
;
j
++
)
for
(
j
=
FIRST_PSEUDO_REGISTER
;
j
<
maxregnum
;
j
++
)
if
(
local_regno
[
j
])
if
(
local_regno
[
j
])
map
->
reg_map
[
j
]
=
gen_reg_rtx
(
GET_MODE
(
regno_reg_rtx
[
j
]));
map
->
reg_map
[
j
]
=
gen_reg_rtx
(
GET_MODE
(
regno_reg_rtx
[
j
]));
...
@@ -1093,7 +1093,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before,
...
@@ -1093,7 +1093,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before,
if
(
local_label
[
j
])
if
(
local_label
[
j
])
map
->
label_map
[
j
]
=
gen_label_rtx
();
map
->
label_map
[
j
]
=
gen_label_rtx
();
for
(
j
=
0
;
j
<
maxregnum
;
j
++
)
for
(
j
=
FIRST_PSEUDO_REGISTER
;
j
<
maxregnum
;
j
++
)
if
(
local_regno
[
j
])
if
(
local_regno
[
j
])
map
->
reg_map
[
j
]
=
gen_reg_rtx
(
GET_MODE
(
regno_reg_rtx
[
j
]));
map
->
reg_map
[
j
]
=
gen_reg_rtx
(
GET_MODE
(
regno_reg_rtx
[
j
]));
...
...
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