summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Loki <loki@gcc.gnu.org>2006-01-27 10:59:40 +0000
committerGabor Loki <loki@gcc.gnu.org>2006-01-27 10:59:40 +0000
commitdccb60e93b6fe1b6acf55c4795815177981595e6 (patch)
treec7afe4325a5ae422202efadf6ea7230229370e25
parentb1edd4b2bee65c613ce0e6942e3e96da5eac8c9b (diff)
downloadgcc-dccb60e93b6fe1b6acf55c4795815177981595e6.tar.gz
cfgcleanup.c (try_crossjump_to_edge): Fix comment typo.
2006-01-27 Gabor Loki <loki@gcc.gnu.org> * cfgcleanup.c (try_crossjump_to_edge): Fix comment typo. From-SVN: r110297
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/cfgcleanup.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 68c169b1596..ccfff4b0c3a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-27 Gabor Loki <loki@gcc.gnu.org>
+
+ * cfgcleanup.c (try_crossjump_to_edge): Fix comment typo.
+
2006-01-26 Alexandre Oliva <aoliva@redhat.com>
PR other/24829
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c
index 4f0c9d4de8a..753f7c50f17 100644
--- a/gcc/cfgcleanup.c
+++ b/gcc/cfgcleanup.c
@@ -1701,7 +1701,7 @@ try_crossjump_to_edge (int mode, edge e1, edge e2)
&& (newpos1 != BB_HEAD (src1)))
return false;
- /* Avoid deleting preseve label when redirecting ABNORMAL edeges. */
+ /* Avoid deleting preserve label when redirecting ABNORMAL edeges. */
if (block_has_preserve_label (e1->dest)
&& (e1->flags & EDGE_ABNORMAL))
return false;