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
57d52c81
Commit
57d52c81
authored
Dec 13, 2004
by
Richard Henderson
Committed by
Richard Henderson
Dec 13, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfg.c (dump_flow_info): Don't dump pseudo info after reload.
From-SVN: r92081
parent
9a9286af
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/cfg.c
+2
-1
No files found.
gcc/ChangeLog
View file @
57d52c81
2004
-
12
-
13
Richard
Henderson
<
rth
@
redhat
.
com
>
*
cfg
.
c
(
dump_flow_info
):
Don
't dump pseudo info after reload.
2004-12-13 Richard Henderson <rth@redhat.com>
* Makefile.in (insn-preds.o): Depend on REGS_H.
* genpreds.c (write_insn_preds_c): Include regs.h.
* config/i386/predicates.md (index_register_operand): Use
...
...
gcc/cfg.c
View file @
57d52c81
...
...
@@ -517,7 +517,8 @@ dump_flow_info (FILE *file)
basic_block
bb
;
static
const
char
*
const
reg_class_names
[]
=
REG_CLASS_NAMES
;
if
(
reg_n_info
)
/* There are no pseudo registers after reload. Don't dump them. */
if
(
reg_n_info
&&
!
reload_completed
)
{
int
max_regno
=
max_reg_num
();
fprintf
(
file
,
"%d registers.
\n
"
,
max_regno
);
...
...
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