cfgcleanup.c (merge_blocks): Fix return value.
authorEric Christopher <echristo@redhat.com>
Fri, 16 May 2003 02:11:26 +0000 (02:11 +0000)
committerEric Christopher <echristo@gcc.gnu.org>
Fri, 16 May 2003 02:11:26 +0000 (02:11 +0000)
2003-05-15  Eric Christopher  <echristo@redhat.com>

        * cfgcleanup.c (merge_blocks): Fix return value.

From-SVN: r66854

gcc/ChangeLog
gcc/cfgcleanup.c

index 699bba0..a8f77d5 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-15  Eric Christopher  <echristo@redhat.com>
+
+       * cfgcleanup.c (merge_blocks): Fix return value.
+
 2003-05-15 Eric Christopher <echristo@redhat.com>
 
         * combine.c (expand_compound_operation): Make sure
index c9e64ed..cfb838c 100644 (file)
@@ -888,7 +888,7 @@ merge_blocks (e, b, c, mode)
       return next == ENTRY_BLOCK_PTR ? next->next_bb : next;
     }
 
-  return false;
+  return NULL;
 }
 \f
 
@@ -1479,7 +1479,7 @@ try_crossjump_to_edge (mode, e1, e2)
        }
     }
 #endif
-  
+
   /* Avoid splitting if possible.  */
   if (newpos2 == src2->head)
     redirect_to = src2;