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
cd39fc13
Commit
cd39fc13
authored
Mar 24, 2002
by
Richard Henderson
Committed by
Richard Henderson
Mar 24, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* unroll.c (unroll_loop): Zero label_map.
From-SVN: r51300
parent
e7d482b9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/unroll.c
+1
-2
No files found.
gcc/ChangeLog
View file @
cd39fc13
2002-03-24 Richard Henderson <rth@redhat.com>
* unroll.c (unroll_loop): Zero label_map.
* gcse.c: Include except.h.
* Makefile.in (gcse.o): Update.
...
...
gcc/unroll.c
View file @
cd39fc13
...
...
@@ -721,8 +721,7 @@ unroll_loop (loop, insn_count, strength_reduce_p)
if
(
max_labelno
>
0
)
{
map
->
label_map
=
(
rtx
*
)
xmalloc
(
max_labelno
*
sizeof
(
rtx
));
map
->
label_map
=
(
rtx
*
)
xcalloc
(
max_labelno
,
sizeof
(
rtx
));
local_label
=
(
char
*
)
xcalloc
(
max_labelno
,
sizeof
(
char
));
}
...
...
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