diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index e96a2746561efa421ccc325acdca821d82602a78..948736da48d33937231be09df15c1ee14171a375 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -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,
diff --git a/gcc/cp/cvt.c b/gcc/cp/cvt.c
index d03cff5df65eea3413a9d23afd0bef603e19f6af..cef8bc8eb749d5379f1c92cd25e9f5a376b23dfa 100644
--- a/gcc/cp/cvt.c
+++ b/gcc/cp/cvt.c
@@ -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);
diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c
index 2012546f6f4cdcb79ddd4b536e710bfb7eab7997..77cdf05674482d3d1768825e551f7c0eedd2b133 100644
--- a/gcc/cp/typeck.c
+++ b/gcc/cp/typeck.c
@@ -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))