diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-13 14:34:13 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-13 14:34:13 +0000 |
commit | f0e4ea10f9d4ea950a89338ff99943f4fb274c00 (patch) | |
tree | 61ca3ff252cd1e5c6f3886fcfa7f1f1b672e4c27 /gcc | |
parent | fec02a2d77525e980aa9ac53f6c308004144c5b7 (diff) | |
download | gcc-f0e4ea10f9d4ea950a89338ff99943f4fb274c00.zip gcc-f0e4ea10f9d4ea950a89338ff99943f4fb274c00.tar.gz gcc-f0e4ea10f9d4ea950a89338ff99943f4fb274c00.tar.bz2 |
basic-block.h, [...]: Fix comment typos.
* basic-block.h, tree-ssa-uncprop.c, varasm.c,
config/i386/sse.md: Fix comment typos.
From-SVN: r98085
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/basic-block.h | 2 | ||||
-rw-r--r-- | gcc/tree-ssa-uncprop.c | 4 | ||||
-rw-r--r-- | gcc/varasm.c | 4 |
4 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c58b344..cdc2df9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-04-13 Kazu Hirata <kazu@cs.umass.edu> + + * basic-block.h, tree-ssa-uncprop.c, varasm.c, + config/i386/sse.md: Fix comment typos. + 2005-04-13 Eric Botcazou <ebotcazou@libertysurf.fr> * configure.ac (gcc_AC_CHECK_DECLS): Add vsnprintf. diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 965c322..2527640 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -396,7 +396,7 @@ struct control_flow_graph GTY(()) #define BASIC_BLOCK_FOR_FUNCTION(FN,N) \ (VARRAY_BB (basic_block_info_for_function(FN), (N))) -/* Defines for texual backward source compatibility. */ +/* Defines for textual backward source compatibility. */ #define ENTRY_BLOCK_PTR (cfun->cfg->x_entry_block_ptr) #define EXIT_BLOCK_PTR (cfun->cfg->x_exit_block_ptr) #define basic_block_info (cfun->cfg->x_basic_block_info) diff --git a/gcc/tree-ssa-uncprop.c b/gcc/tree-ssa-uncprop.c index 4400ee7..a73c271 100644 --- a/gcc/tree-ssa-uncprop.c +++ b/gcc/tree-ssa-uncprop.c @@ -258,7 +258,7 @@ associate_equivalences_with_edges (void) COND_EXPRs and SWITCH_EXPRs. We want to do those propagations as they can sometimes allow - the SSA optimziers to do a better job. However, in the cases + the SSA optimizers to do a better job. However, in the cases where such propagations do not result in further optimization, we would like to "undo" the propagation to avoid the redundant copies and constant initializations. @@ -507,7 +507,7 @@ uncprop_into_successor_phis (struct dom_walk_data *walk_data ATTRIBUTE_UNUSED, /* Walk every equivalence with the same value. If we find one with the same underlying variable as the PHI result, then replace the value in the argument with its equivalent - SSA_NAME. Use the most recent equivlance as hopefully + SSA_NAME. Use the most recent equivalence as hopefully that results in shortest lifetimes. */ for (j = VARRAY_ACTIVE_SIZE (elt->equivalences) - 1; j >= 0; j--) { diff --git a/gcc/varasm.c b/gcc/varasm.c index 16f6d3b..f2a361d 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -129,8 +129,8 @@ char *hot_section_end_label; char *cold_section_end_label; -/* The following global variable indicates the seciton name to be used - for the current cold section, when partitiong hot and cold basic +/* The following global variable indicates the section name to be used + for the current cold section, when partitioning hot and cold basic blocks into separate sections. */ char *unlikely_text_section_name; |