aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2007-10-14 01:36:18 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2007-10-14 01:36:18 +0000
commit84fbffb2c2ca27cf8368808a467a06734fae8ce0 (patch)
treefa292910ee8ad254d6fd20ee30ba53fae74d9ab7 /gcc/function.c
parentd06a846ba9cfffdd2ddbe36a1db7bf47b67a3c13 (diff)
downloadgcc-84fbffb2c2ca27cf8368808a467a06734fae8ce0.zip
gcc-84fbffb2c2ca27cf8368808a467a06734fae8ce0.tar.gz
gcc-84fbffb2c2ca27cf8368808a467a06734fae8ce0.tar.bz2
fixed-bit.c, [...]: Fix comment typos.
* config/fixed-bit.c, config/i386/cpuid.h, config/i386/i386.c, config/i386/i386.md, config/i386/sse.md, function.c, jump.c, modulo-sched.c, ra-conflict.c, toplev.c, tree-eh.c, tree-sra.c, tree-ssa-dse.c, tree-vect-analyze.c, tree-vect-patterns.c, tree-vect-transform.c: Fix comment typos. * doc/extend.texi: Fix a typo. From-SVN: r129291
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c
index d05d1b2..05bbd64 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -5702,7 +5702,7 @@ match_asm_constraints_1 (rtx insn, rtx *p_sets, int noutputs)
asm ("" : "=r" (output), "=m" (input) : "0" (input))
- Here 'input' is used in two occurences as input (once for the
+ Here 'input' is used in two occurrences as input (once for the
input operand, once for the address in the second output operand).
If we would replace only the occurence of the input operand (to
make the matching) we would be left with this:
@@ -5714,7 +5714,7 @@ match_asm_constraints_1 (rtx insn, rtx *p_sets, int noutputs)
value, but different pseudos) where we formerly had only one.
With more complicated asms this might lead to reload failures
which wouldn't have happen without this pass. So, iterate over
- all operands and replace all occurences of the register used. */
+ all operands and replace all occurrences of the register used. */
for (j = 0; j < noutputs; j++)
if (!rtx_equal_p (SET_DEST (p_sets[j]), input)
&& reg_overlap_mentioned_p (input, SET_DEST (p_sets[j])))