aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2005-06-26 18:43:05 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-06-26 18:43:05 +0000
commitf341de7bf61024b66271078de0ea3d1085e665f2 (patch)
tree044dedf62bc1fc554d69963e0f7257d766b5baf9 /gcc/cfg.c
parent5b65d351636e6bb12e65df88848fc692a22b1766 (diff)
downloadgcc-f341de7bf61024b66271078de0ea3d1085e665f2.zip
gcc-f341de7bf61024b66271078de0ea3d1085e665f2.tar.gz
gcc-f341de7bf61024b66271078de0ea3d1085e665f2.tar.bz2
cfg.c, [...]: Fix comment typos.
* cfg.c, tree-vect-transform.c, tree.def: Fix comment typos. * doc/invoke.texi: Fix typos. From-SVN: r101336
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index 044fcae..af8a377 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -947,7 +947,8 @@ scale_bbs_frequencies_gcov_type (basic_block *bbs, int nbbs, gcov_type num,
}
}
-/* Datastructures used to maintain mapping between basic blocks and copies. */
+/* Data structures used to maintain mapping between basic blocks and
+ copies. */
static htab_t bb_original;
static htab_t bb_copy;
static alloc_pool original_copy_bb_pool;
@@ -979,7 +980,8 @@ bb_copy_original_eq (const void *p, const void *q)
return data->index1 == data2->index1;
}
-/* Initialize the datstructures to maintain mapping between blocks and it's copies. */
+/* Initialize the data structures to maintain mapping between blocks
+ and its copies. */
void
initialize_original_copy_tables (void)
{
@@ -992,7 +994,8 @@ initialize_original_copy_tables (void)
bb_copy = htab_create (10, bb_copy_original_hash, bb_copy_original_eq, NULL);
}
-/* Free the datstructures to maintain mapping between blocks and it's copies. */
+/* Free the data structures to maintain mapping between blocks and
+ its copies. */
void
free_original_copy_tables (void)
{
@@ -1005,8 +1008,8 @@ free_original_copy_tables (void)
original_copy_bb_pool = NULL;
}
-/* Set original for basic block. Do nothing when datstructures are not
- intialized so passes not needing this don't need to care. */
+/* Set original for basic block. Do nothing when data structures are not
+ initialized so passes not needing this don't need to care. */
void
set_bb_original (basic_block bb, basic_block original)
{
@@ -1047,8 +1050,8 @@ get_bb_original (basic_block bb)
return NULL;
}
-/* Set copy for basic block. Do nothing when datstructures are not
- intialized so passes not needing this don't need to care. */
+/* Set copy for basic block. Do nothing when data structures are not
+ initialized so passes not needing this don't need to care. */
void
set_bb_copy (basic_block bb, basic_block copy)
{