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
65d98182
Commit
65d98182
authored
Mar 23, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Mar 23, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* stmt.c (unroll_block_trees): Free block_vector if needed.
From-SVN: r18786
parent
4b8bef1d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletions
+12
-1
gcc/ChangeLog
+4
-0
gcc/stmt.c
+8
-1
No files found.
gcc/ChangeLog
View file @
65d98182
Mon Mar 23 23:49:47 1998 Jeffrey A Law (law@cygnus.com)
* stmt.c (unroll_block_trees): Free block_vector if needed.
Mon Mar 23 23:26:42 1998 Philippe De Muyter <phdm@macqel.be>
* m68k/m68k.md (zero_extendqidi2, zero_extendhidi2): New patterns.
...
...
gcc/stmt.c
View file @
65d98182
...
...
@@ -5684,7 +5684,10 @@ emit_case_nodes (index, node, default_label, index_type)
/* These routines are used by the loop unrolling code. They copy BLOCK trees
so that the debugging info will be correct for the unrolled loop. */
/* Indexed by block number, contains a pointer to the N'th block node. */
/* Indexed by block number, contains a pointer to the N'th block node.
Allocated by the call to identify_blocks, then released after the call
to reorder_blocks in the function unroll_block_trees. */
static
tree
*
block_vector
;
...
...
@@ -5702,4 +5705,8 @@ unroll_block_trees ()
tree
block
=
DECL_INITIAL
(
current_function_decl
);
reorder_blocks
(
block_vector
,
block
,
get_insns
());
/* Release any memory allocated by identify_blocks. */
if
(
block_vector
)
free
(
block_vector
);
}
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