diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-22 01:27:34 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-22 01:27:34 +0000 |
commit | db34a10922df4970fe8697b3fb71e02f027f1265 (patch) | |
tree | 6aeac98ecb459edaa196adae23fb66b70e3d6346 /gcc/cfg.c | |
parent | 7ce3d0dfc55205b03efb54a9154c202f2ea6a41c (diff) | |
download | gcc-db34a10922df4970fe8697b3fb71e02f027f1265.tar.gz |
* cfgbuild.c: Fix formatting.
* cfg.c: Likewise.
* cfgcleanup.c: Likewise.
* cfglayout.c: Likewise.
* cfgloop.c: Likewise.
* cfgrtl.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53717 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index d1045331e2b..4b066011b0c 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -234,7 +234,7 @@ link_block (b, after) after->next_bb = b; b->next_bb->prev_bb = b; } - + /* Unlink block B from chain. */ void unlink_block (b) @@ -243,7 +243,7 @@ unlink_block (b) b->next_bb->prev_bb = b->prev_bb; b->prev_bb->next_bb = b->next_bb; } - + /* Remove block B from the basic block array and compact behind it. */ |