cvt.c (convert_pointer_to_real): Use same_type_p.
authorNathan Sidwell <nathan@acm.org>
Thu, 1 Apr 1999 12:23:07 +0000 (12:23 +0000)
committerMartin v. Löwis <loewis@gcc.gnu.org>
Thu, 1 Apr 1999 12:23:07 +0000 (12:23 +0000)
        * cvt.c (convert_pointer_to_real): Use same_type_p.
* typeck.c (comp_target_types): Use same_type_p.

From-SVN: r26105

gcc/cp/ChangeLog
gcc/cp/cvt.c
gcc/cp/typeck.c

index e96a274..948736d 100644 (file)
@@ -1,3 +1,8 @@
+Wed Mar 31 11:30:43 BST 1999  Nathan Sidwell  <nathan@acm.org>
+
+       * cvt.c (convert_pointer_to_real): Use same_type_p.
+       * typeck.c (comp_target_types): Use same_type_p.
+
 1999-03-31  Jason Merrill  <jason@yorick.cygnus.com>
 
        * semantics.c (begin_inline_definitions,
index d03cff5..cef8bc8 100644 (file)
@@ -579,7 +579,7 @@ convert_pointer_to_real (binfo, expr)
   ptr_type = cp_build_qualified_type (type,
                                      CP_TYPE_QUALS (TREE_TYPE (intype)));
   ptr_type = build_pointer_type (ptr_type);
-  if (ptr_type == TYPE_MAIN_VARIANT (intype))
+  if (same_type_p (ptr_type, TYPE_MAIN_VARIANT (intype)))
     return expr;
 
   my_friendly_assert (!integer_zerop (expr), 191);
index 2012546..77cdf05 100644 (file)
@@ -1021,7 +1021,7 @@ comp_target_types (ttl, ttr, nptrs)
 {
   ttl = TYPE_MAIN_VARIANT (ttl);
   ttr = TYPE_MAIN_VARIANT (ttr);
-  if (ttl == ttr)
+  if (same_type_p (ttl, ttr))
     return 1;
 
   if (TREE_CODE (ttr) != TREE_CODE (ttl))