diff options
author | Richard Stallman <rms@gnu.org> | 1993-04-14 17:29:55 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-04-14 17:29:55 +0000 |
commit | 08632da2b6394e5859f709021c96f9492bda5017 (patch) | |
tree | d8db609891d97dccc25a6b528251868123876d02 /gcc | |
parent | 7651f8f78722873942d6190f483a903845f17997 (diff) | |
download | gcc-08632da2b6394e5859f709021c96f9492bda5017.zip gcc-08632da2b6394e5859f709021c96f9492bda5017.tar.gz gcc-08632da2b6394e5859f709021c96f9492bda5017.tar.bz2 |
Comment change.
From-SVN: r4152
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-typeck.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 081a237..c0443de 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -413,8 +413,9 @@ comptypes (type1, type2) if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2)) return 0; - /* If generating auxiliary info, allow for two different type nodes which - have essentially the same definition. */ + /* Allow for two different type nodes which have essentially the same + definition. Note that we already checked for equality of the type + type qualifiers (just above). */ if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2)) return 1; |