aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMichael Meissner <meissner@cygnus.com>1998-05-13 12:55:38 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1998-05-13 12:55:38 +0000
commit6d3352d918100261a833e268b5d400070923d238 (patch)
tree2d23faa942ce24897b23cecb636c873208333bd1 /gcc
parent63e76c876f20c338c03091b3c38828ca23eb5cb8 (diff)
downloadgcc-6d3352d918100261a833e268b5d400070923d238.zip
gcc-6d3352d918100261a833e268b5d400070923d238.tar.gz
gcc-6d3352d918100261a833e268b5d400070923d238.tar.bz2
align debug output
From-SVN: r19721
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/haifa-sched.c8
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index cce3da5..ffc7aff 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+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.
diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c
index 6093486..90a4f82 100644
--- a/gcc/haifa-sched.c
+++ b/gcc/haifa-sched.c
@@ -6699,7 +6699,7 @@ schedule_block (bb, rgn_n_insns)
if (sched_verbose >= 2)
{
- fprintf (dump, ";;\t\tReady list initially: ");
+ fprintf (dump, ";;\t\tReady 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. */