diff options
author | Mike Stump <mrs@gcc.gnu.org> | 2007-05-10 18:52:03 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2007-05-10 18:52:03 +0000 |
commit | 40790141b7a5abb0488cdc97dc08be9eb9854080 (patch) | |
tree | 98fc5d41e85f06c859b6779a070e178813341908 | |
parent | b548a9c2c2037434a577d39730cc4d46610f4a66 (diff) | |
download | gcc-40790141b7a5abb0488cdc97dc08be9eb9854080.zip gcc-40790141b7a5abb0488cdc97dc08be9eb9854080.tar.gz gcc-40790141b7a5abb0488cdc97dc08be9eb9854080.tar.bz2 |
Improve comment...
From-SVN: r124597
-rw-r--r-- | gcc/ipa-type-escape.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ipa-type-escape.c b/gcc/ipa-type-escape.c index 7cdfbe1..1619c5e 100644 --- a/gcc/ipa-type-escape.c +++ b/gcc/ipa-type-escape.c @@ -196,8 +196,9 @@ compare_type_brand (splay_tree_key sk1, splay_tree_key sk2) /* This is a trivial algorithm for removing duplicate types. This would not work for any language that used structural equivalence as the basis of its type system. */ -/* Return either TYPE if this is first time TYPE has been seen an - compatible TYPE that has already been processed. */ +/* Return TYPE if no type compatible with TYPE has been seen so far, + otherwise return a type compatible with TYPE that has already been + processed. */ static tree discover_unique_type (tree type) |