From f341de7bf61024b66271078de0ea3d1085e665f2 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sun, 26 Jun 2005 18:43:05 +0000 Subject: cfg.c, [...]: Fix comment typos. * cfg.c, tree-vect-transform.c, tree.def: Fix comment typos. * doc/invoke.texi: Fix typos. From-SVN: r101336 --- gcc/cfg.c | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'gcc/cfg.c') 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) { -- cgit v1.1