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
35a3fa09
Commit
35a3fa09
authored
Feb 17, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Feb 17, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* recog.c (split_all_insns): Fix memory overflow.
From-SVN: r62998
parent
6dc50366
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
gcc/ChangeLog
+4
-0
gcc/recog.c
+11
-3
No files found.
gcc/ChangeLog
View file @
35a3fa09
Mon
Feb
17
16
:
16
:
54
CET
2003
Jan
Hubicka
<
jh
@suse
.
cz
>
*
recog
.
c
(
split_all_insns
)
:
Fix
memory
overflow
.
2003
-
02
-
17
Kazu
Hirata
<
kazu
@cs
.
umass
.
edu
>
*
config
/
h8300
/
h8300
.
md
(
cmpqi
)
:
Remove
mode
from
compare
.
...
...
gcc/recog.c
View file @
35a3fa09
...
...
@@ -2882,10 +2882,18 @@ split_all_insns (upd_life)
find_many_sub_basic_blocks
(
blocks
);
while
(
old_last_basic_block
<
last_basic_block
)
if
(
old_last_basic_block
!=
last_basic_block
&&
upd_life
)
{
SET_BIT
(
blocks
,
old_last_basic_block
);
old_last_basic_block
++
;
sbitmap
new_blocks
=
sbitmap_alloc
(
last_basic_block
);
sbitmap_copy
(
new_blocks
,
blocks
);
while
(
old_last_basic_block
<
last_basic_block
)
{
SET_BIT
(
new_blocks
,
old_last_basic_block
);
old_last_basic_block
++
;
}
sbitmap_free
(
blocks
);
new_blocks
=
blocks
;
}
}
...
...
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