aboutsummaryrefslogtreecommitdiff
path: root/gcc/omp-low.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-04-15 21:45:06 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-04-15 21:45:06 +0000
commit75c40d56f7c0f3fcc5c630694c14d74011d2c1a3 (patch)
tree51c527408becab45ec9307f29e5ba320f3bc0a8b /gcc/omp-low.c
parent8370f6fa3cae71c3ec88804cfac7ce130b8bd871 (diff)
downloadgcc-75c40d56f7c0f3fcc5c630694c14d74011d2c1a3.zip
gcc-75c40d56f7c0f3fcc5c630694c14d74011d2c1a3.tar.gz
gcc-75c40d56f7c0f3fcc5c630694c14d74011d2c1a3.tar.bz2
cfgcleanup.c, [...]: Fix comment typos.
* cfgcleanup.c, config/dfp-bit.c, expr.c, fold-const.c, jump.c, mips-tfile.c, omp-low.c, sched-int.h, tree-ssa-loop-prefetch.c, tree-vrp.c: Fix comment typos. From-SVN: r112971
Diffstat (limited to 'gcc/omp-low.c')
-rw-r--r--gcc/omp-low.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/omp-low.c b/gcc/omp-low.c
index 5578e47..bcc3650 100644
--- a/gcc/omp-low.c
+++ b/gcc/omp-low.c
@@ -2233,10 +2233,10 @@ remove_exit_barrier (struct omp_region *region)
exit_bb = region->exit;
/* The last insn in the block will be the parallel's OMP_RETURN. The
- workshare's OMP_RETURN will be in a preceeding block. The kinds of
+ workshare's OMP_RETURN will be in a preceding block. The kinds of
statements that can appear in between are extremely limited -- no
memory operations at all. Here, we allow nothing at all, so the
- only thing we allow to preceed this OMP_RETURN is a label. */
+ only thing we allow to precede this OMP_RETURN is a label. */
si = bsi_last (exit_bb);
gcc_assert (TREE_CODE (bsi_stmt (si)) == OMP_RETURN);
bsi_prev (&si);