Commit d0225025 by Andreas Jaeger

cfglayout.c (fixup_fallthru_exit_predecesor): Make void, rename to ....

	* cfglayout.c (fixup_fallthru_exit_predecesor): Make void, rename
	to ....
	(fixup_fallthru_exit_predecessor): ... this.
	Change callers and prototype.

From-SVN: r47098
parent f6b733ed
2001-11-16 Andreas Jaeger <aj@suse.de>
* cfglayout.c (fixup_fallthru_exit_predecesor): Make void, rename
to ....
(fixup_fallthru_exit_predecessor): ... this.
Change callers and prototype.
2001-11-16 Bernd Schmidt <bernds@redhat.com> 2001-11-16 Bernd Schmidt <bernds@redhat.com>
* config/i386/i386.c (ix86_expand_sse_comi): Generate setcc by * config/i386/i386.c (ix86_expand_sse_comi): Generate setcc by
...@@ -83,10 +90,10 @@ Fri Nov 16 06:37:05 2001 Andreas Tobler <a.tobler@schweiz.ch> ...@@ -83,10 +90,10 @@ Fri Nov 16 06:37:05 2001 Andreas Tobler <a.tobler@schweiz.ch>
2001-11-15 Stan Shebs <shebs@apple.com> 2001-11-15 Stan Shebs <shebs@apple.com>
* expr.c (expand_expr, case COMPONENT_REF): Fix variable ref. * expr.c (expand_expr, case COMPONENT_REF): Fix variable ref.
2001-11-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz> 2001-11-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* config/s390/s390.md: Remove ALIGN arg from emit_cmp_and_jump_insns * config/s390/s390.md: Remove ALIGN arg from emit_cmp_and_jump_insns
call. call.
* config/i386/i386.md: Likewise. * config/i386/i386.md: Likewise.
......
/* Basic block reordering routines for the GNU compiler. /* Basic block reordering routines for the GNU compiler.
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2001 Free Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -110,7 +110,7 @@ static rtx get_next_bb_note PARAMS ((rtx)); ...@@ -110,7 +110,7 @@ static rtx get_next_bb_note PARAMS ((rtx));
static rtx get_prev_bb_note PARAMS ((rtx)); static rtx get_prev_bb_note PARAMS ((rtx));
void verify_insn_chain PARAMS ((void)); void verify_insn_chain PARAMS ((void));
static basic_block fixup_fallthru_exit_predecesor PARAMS ((void)); static void fixup_fallthru_exit_predecessor PARAMS ((void));
/* Skip over inter-block insns occurring after BB which are typically /* Skip over inter-block insns occurring after BB which are typically
associated with BB (e.g., barriers). If there are any such insns, associated with BB (e.g., barriers). If there are any such insns,
...@@ -1043,10 +1043,10 @@ verify_insn_chain () ...@@ -1043,10 +1043,10 @@ verify_insn_chain ()
} }
} }
/* The block falling trought to exit must be last in the reordered /* The block falling through to exit must be the last one in the
chain. Make it happen so. */ reordered chain. Ensure that this condition is met. */
static basic_block static void
fixup_fallthru_exit_predecesor () fixup_fallthru_exit_predecessor ()
{ {
edge e; edge e;
basic_block bb = NULL; basic_block bb = NULL;
...@@ -1087,7 +1087,7 @@ cfg_layout_initialize () ...@@ -1087,7 +1087,7 @@ cfg_layout_initialize ()
void void
cfg_layout_finalize () cfg_layout_finalize ()
{ {
fixup_fallthru_exit_predecesor (); fixup_fallthru_exit_predecessor ();
fixup_reorder_chain (); fixup_reorder_chain ();
#ifdef ENABLE_CHECKING #ifdef ENABLE_CHECKING
verify_insn_chain (); verify_insn_chain ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment