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
dcc6c741
Commit
dcc6c741
authored
Oct 29, 1999
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jump.c, reg-stack.c, toplev.c: Revert Oct 27 change.
From-SVN: r30271
parent
501eb93c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
12 deletions
+3
-12
gcc/reg-stack.c
+3
-12
No files found.
gcc/reg-stack.c
View file @
dcc6c741
...
...
@@ -418,7 +418,6 @@ reg_to_stack (first, file)
{
int
i
;
int
max_uid
;
sbitmap
blocks
;
block_info
bi
;
/* See if there is something to do. Flow analysis is quite
...
...
@@ -431,17 +430,9 @@ reg_to_stack (first, file)
/* Ok, floating point instructions exist. If not optimizing,
build the CFG and run life analysis. */
if
(
!
optimize
)
{
find_basic_blocks
(
first
,
max_reg_num
(),
file
,
0
);
blocks
=
sbitmap_alloc
(
n_basic_blocks
);
sbitmap_ones
(
blocks
);
count_or_remove_death_notes
(
blocks
,
1
);
sbitmap_free
(
blocks
);
life_analysis
(
first
,
max_reg_num
(),
file
,
0
);
}
find_basic_blocks
(
first
,
max_reg_num
(),
file
,
0
);
count_or_remove_death_notes
(
NULL
,
1
);
life_analysis
(
first
,
max_reg_num
(),
file
,
0
);
/* Set up block info for each basic block. */
bi
=
(
block_info
)
alloca
((
n_basic_blocks
+
1
)
*
sizeof
(
*
bi
));
...
...
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