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
f34ac626
Commit
f34ac626
authored
May 03, 2005
by
Richard Henderson
Committed by
Richard Henderson
May 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfg.c (dump_flow_info): Use max_reg_num, not max_regno.
From-SVN: r99175
parent
a5c4dfe2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
gcc/ChangeLog
+2
-0
gcc/cfg.c
+3
-3
No files found.
gcc/ChangeLog
View file @
f34ac626
...
...
@@ -2,6 +2,8 @@
* config/rs6000/rs6000.c: Remove conflict markers.
* cfg.c (dump_flow_info): Use max_reg_num, not max_regno.
2005-05-03 James E Wilson <wilson@specifixinc.com>
* dwarf2out.c (lookup_filename): Call maybe_emit_file.
...
...
gcc/cfg.c
View file @
f34ac626
...
...
@@ -471,14 +471,14 @@ check_bb_profile (basic_block bb, FILE * file)
void
dump_flow_info
(
FILE
*
file
)
{
int
i
;
basic_block
bb
;
/* There are no pseudo registers after reload. Don't dump them. */
if
(
reg_n_info
&&
!
reload_completed
)
{
fprintf
(
file
,
"%d registers.
\n
"
,
max_regno
);
for
(
i
=
FIRST_PSEUDO_REGISTER
;
i
<
max_regno
;
i
++
)
unsigned
int
i
,
max
=
max_reg_num
();
fprintf
(
file
,
"%d registers.
\n
"
,
max
);
for
(
i
=
FIRST_PSEUDO_REGISTER
;
i
<
max
;
i
++
)
if
(
REG_N_REFS
(
i
))
{
enum
reg_class
class
,
altclass
;
...
...
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