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
6d3352d9
Commit
6d3352d9
authored
May 13, 1998
by
Michael Meissner
Committed by
Michael Meissner
May 13, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
align debug output
From-SVN: r19721
parent
63e76c87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+4
-0
gcc/haifa-sched.c
+5
-3
No files found.
gcc/ChangeLog
View file @
6d3352d9
Wed May 13 15:28:59 1998 Michael Meissner <meissner@cygnus.com>
* haifa-sched.c (schedule_block): Make verbose output line up.
Wed May 13 15:43:44 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (c-lang.o): Depend on c-tree.h, c-lex.h and toplev.h.
...
...
gcc/haifa-sched.c
View file @
6d3352d9
...
...
@@ -6699,7 +6699,7 @@ schedule_block (bb, rgn_n_insns)
if
(
sched_verbose
>=
2
)
{
fprintf
(
dump
,
";;
\t\t
Ready list initially: "
);
fprintf
(
dump
,
";;
\t\t
Ready list initially:
"
);
debug_ready_list
(
ready
,
n_ready
);
}
...
...
@@ -6973,7 +6973,7 @@ compute_block_forward_dependences (bb)
/* Initialize variables for region data dependence analysis.
n_bbs is the number of region blocks */
HAIFA_INLINE
static
void
__inline
static
void
init_rgn_data_dependences
(
n_bbs
)
int
n_bbs
;
{
...
...
@@ -8518,7 +8518,9 @@ schedule_insns (dump_file)
We could (should?) recompute register live information. Doing
so may even be beneficial. */
compute_preds_succs
(
s_preds
,
s_succs
,
num_preds
,
num_succs
);
/* CYGNUS LOCAL edge_splitting/law */
compute_preds_succs
(
s_preds
,
s_succs
,
num_preds
,
num_succs
,
0
);
/* END CYGNUS LOCAL */
/* Compute the dominators and post dominators. We don't currently use
post dominators, but we should for speculative motion analysis. */
...
...
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