diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-21 16:02:09 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-21 16:02:09 +0000 |
commit | 9b21b64d18ec2bc77c8e30b9520c5c75703118b7 (patch) | |
tree | 3e92b2a3e015e2c0dd98b7716b067c924d19b6ef /gcc | |
parent | ad73c2a0106c6ce360cb0fde9bf5feb27b941a65 (diff) | |
download | ppe42-gcc-9b21b64d18ec2bc77c8e30b9520c5c75703118b7.tar.gz ppe42-gcc-9b21b64d18ec2bc77c8e30b9520c5c75703118b7.zip |
* cfg.c: Fix typos and formatting in the introductory comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47243 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cfg.c | 9 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 41a53e2f281..5021b405998 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-11-21 Richard Sandiford <rsandifo@redhat.com> + + * cfg.c: Fix typos and formatting in the introductory comment. + Wed Nov 21 12:38:37 CET 2001 Jan Hubicka * profile.c (compute_branch_probabilites): Compute probabilities diff --git a/gcc/cfg.c b/gcc/cfg.c index 57743dfef0a..37c994f89c9 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -19,10 +19,11 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* This file contains low level functions to manipulate with CFG and analyze it. - All other modules should not transform the datastructure directly and use - abstraction instead. The file is supposed to be ordered bottom-up and should - not contain any code dependent on particular intermediate language (RTL or trees) +/* This file contains low level functions to manipulate the CFG and + analyze it. All other modules should not transform the datastructure + directly and use abstraction instead. The file is supposed to be + ordered bottom-up and should not contain any code dependent on a + particular intermediate language (RTL or trees). Available functionality: - Initialization/deallocation |