diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-04-15 21:45:06 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-04-15 21:45:06 +0000 |
commit | 75c40d56f7c0f3fcc5c630694c14d74011d2c1a3 (patch) | |
tree | 51c527408becab45ec9307f29e5ba320f3bc0a8b /gcc/cfgcleanup.c | |
parent | 8370f6fa3cae71c3ec88804cfac7ce130b8bd871 (diff) | |
download | gcc-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/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 954a956..08bd0b6 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -1667,7 +1667,7 @@ try_crossjump_to_edge (int mode, edge e1, edge e2) && (newpos1 != BB_HEAD (src1))) return false; - /* Avoid deleting preserve label when redirecting ABNORMAL edeges. */ + /* Avoid deleting preserve label when redirecting ABNORMAL edges. */ if (block_has_preserve_label (e1->dest) && (e1->flags & EDGE_ABNORMAL)) return false; |