From 738571e87c2c95ca446849e5aec56aa89f9c9b1e Mon Sep 17 00:00:00 2001 From: kazu Date: Fri, 29 Jul 2005 14:52:00 +0000 Subject: [PATCH] * cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c: Fix comment typos. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102555 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/cfg.c | 2 +- gcc/config/frv/frv.c | 2 +- gcc/config/i386/i386.c | 2 +- gcc/tree-complex.c | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 374414bc838..ef9d11e897c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-07-29 Kazu Hirata + + * cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c: + Fix comment typos. + 2005-07-29 Diego Novillo * tree-ssa-dom.c (struct opt_stats_d): Add field num_iterations. diff --git a/gcc/cfg.c b/gcc/cfg.c index 96441326ac6..c46ac0b88ee 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -926,7 +926,7 @@ scale_bbs_frequencies_int (basic_block *bbs, int nbbs, int num, int den) if (num > den) return; /* Assume that the users are producing the fraction from frequencies - that never grow far enought to risk arithmetic overflow. */ + that never grow far enough to risk arithmetic overflow. */ gcc_assert (num < 65536); for (i = 0; i < nbbs; i++) { diff --git a/gcc/config/frv/frv.c b/gcc/config/frv/frv.c index 9213f9b901d..0731302618b 100644 --- a/gcc/config/frv/frv.c +++ b/gcc/config/frv/frv.c @@ -7838,7 +7838,7 @@ frv_optimize_membar_local (basic_block bb, struct frv_io *next_io, is null if the membar has already been deleted. Note that the initialization here should only be needed to - supress warnings. */ + suppress warnings. */ next_membar = 0; /* USED_REGS is the set of registers that are used before the diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 8dd96986cf5..591b8b6a7aa 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -17490,7 +17490,7 @@ ix86_expand_vector_extract (bool mmx_ok, rtx target, rtx vec, int elt) } } -/* Expand a vector reduction on V4SFmode for SSE1. FN is the binar +/* Expand a vector reduction on V4SFmode for SSE1. FN is the binary pattern to reduce; DEST is the destination; IN is the input vector. */ void diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c index a63134f0ec1..de231191824 100644 --- a/gcc/tree-complex.c +++ b/gcc/tree-complex.c @@ -502,7 +502,7 @@ set_component_ssa_name (tree ssa_name, bool imag_p, tree value) ; /* If we've nothing assigned, and the value we're given is already stable, - then install that as the value for this SSA_NAME. This pre-emptively + then install that as the value for this SSA_NAME. This preemptively copy-propagates the value, which avoids unnecessary memory allocation. */ else if (is_gimple_min_invariant (value)) { -- 2.11.4.GIT