diff options
author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-13 14:24:08 +0000 |
---|---|---|
committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-13 14:24:08 +0000 |
commit | 2866115740e51f72fa50647b07f9ec10c9491d5f (patch) | |
tree | 98a3218c9076ac3011bafe86e0af48d75e546128 | |
parent | 540338c603a3876db649e431ac3fff4b698be298 (diff) | |
download | gcc-2866115740e51f72fa50647b07f9ec10c9491d5f.tar.gz |
2006-10-13 Daniel Berlin <dberlin@dberlin.org>
Ramana Radhakrishnan <ramana.radhakrishnan@celunite.com>
* tree-flow-inline.h (zero_ssa_operands): Fix comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117694 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-flow-inline.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ce7336f8455..4185745fa9e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-10-13 Daniel Berlin <dberlin@dberlin.org> + Ramana Radhakrishnan <ramana.radhakrishnan@celunite.com> + + * tree-flow-inline.h (zero_ssa_operands): Fix comment. + 2006-10-12 Jan Hubicka <jh@suse.cz> PR c/28419 diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index 892be56a61c..a3bb65272f2 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -1144,8 +1144,8 @@ single_ssa_def_operand (tree stmt, int flags) } -/* If there is a single operand in STMT matching FLAGS, return it. Otherwise - return NULL. */ +/* Return true if there are zero operands in STMT matching the type + given in FLAGS. */ static inline bool zero_ssa_operands (tree stmt, int flags) { |