Commit 08632da2 by Richard Stallman

Comment change.

From-SVN: r4152
parent 7651f8f7
...@@ -413,8 +413,9 @@ comptypes (type1, type2) ...@@ -413,8 +413,9 @@ comptypes (type1, type2)
if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2)) if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2))
return 0; return 0;
/* If generating auxiliary info, allow for two different type nodes which /* Allow for two different type nodes which have essentially the same
have essentially the same definition. */ definition. Note that we already checked for equality of the type
type qualifiers (just above). */
if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2)) if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
return 1; return 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment