diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-26 18:43:05 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-26 18:43:05 +0000 |
commit | a92c20c403c5eb49b3ee78d11dd3913bc2d9edc9 (patch) | |
tree | 044dedf62bc1fc554d69963e0f7257d766b5baf9 /gcc/cfg.c | |
parent | 583bcf315b5e0365591c6b6ed66a9441ddc6d98c (diff) | |
download | gcc-a92c20c403c5eb49b3ee78d11dd3913bc2d9edc9.tar.gz |
* cfg.c, tree-vect-transform.c, tree.def: Fix comment typos.
* doc/invoke.texi: Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101336 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index 044fcaef242..af8a377b927 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) { |