diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-predcom.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d15dc70..a9602fe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/tree-predcom.c b/gcc/tree-predcom.c index ae59cd9..ca89d75 100644 --- a/gcc/tree-predcom.c +++ b/gcc/tree-predcom.c @@ -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; |