OSDN Git Service

ChangeLog
authortoon <toon@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 23 Jan 2010 14:33:26 +0000 (14:33 +0000)
committertoon <toon@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 23 Jan 2010 14:33:26 +0000 (14:33 +0000)
* tree-predcom.c (combine_chains): Return NULL, not false.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156191 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-predcom.c

index d15dc70..a9602fe 100644 (file)
@@ -1,3 +1,7 @@
+2010-01-23  Toon Moene  <toon@moene.org>
+
+       * tree-predcom.c (combine_chains): Return NULL, not false.
+
 2010-01-23  Joern Rennecke  <amylaar@spamcop.net>
 
        * tree-loop-distribution.c (distribute_loop): Fix declaration and
index ae59cd9..ca89d75 100644 (file)
@@ -2277,7 +2277,7 @@ combine_chains (chain_p ch1, chain_p ch2)
   tree rslt_type = NULL_TREE;
 
   if (ch1 == ch2)
-    return false;
+    return NULL;
   if (ch1->length != ch2->length)
     return NULL;