public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* gccgo patch committed: Permit conversion from any uintptr type to unsafe.Pointer
@ 2015-03-30 17:32 Ian Lance Taylor
  0 siblings, 0 replies; only message in thread
From: Ian Lance Taylor @ 2015-03-30 17:32 UTC (permalink / raw)
  To: gcc-patches, gofrontend-dev

[-- Attachment #1: Type: text/plain, Size: 463 bytes --]

The Go language permits converting any type whose underlying type is
uintptr to unsafe.Pointer.  The Go frontend did not implement this
correctly.  This is http://golang.org/issue/10284.  This patch from
Minux fixes the problem.  Bootstrapped and ran Go testsuite on
x86_64-unknown-linux-gnu.  Committed to mainline.

A test case is being added to the main Go repository
(http://golang.org/cl/8240) and will be copied into the gccgo
testsuite in due course.

Ian

[-- Attachment #2: foo.txt --]
[-- Type: text/plain, Size: 935 bytes --]

diff -r d902a931d05b go/types.cc
--- a/go/types.cc	Mon Mar 30 10:26:47 2015 -0700
+++ b/go/types.cc	Mon Mar 30 10:30:14 2015 -0700
@@ -772,16 +772,16 @@
     }
 
   // An unsafe.Pointer type may be converted to any pointer type or to
-  // uintptr, and vice-versa.
+  // a type whose underlying type is uintptr, and vice-versa.
   if (lhs->is_unsafe_pointer_type()
       && (rhs->points_to() != NULL
 	  || (rhs->integer_type() != NULL
-	      && rhs->forwarded() == Type::lookup_integer_type("uintptr"))))
+	      && rhs->integer_type() == Type::lookup_integer_type("uintptr")->real_type())))
     return true;
   if (rhs->is_unsafe_pointer_type()
       && (lhs->points_to() != NULL
 	  || (lhs->integer_type() != NULL
-	      && lhs->forwarded() == Type::lookup_integer_type("uintptr"))))
+	      && lhs->integer_type() == Type::lookup_integer_type("uintptr")->real_type())))
     return true;
 
   // Give a better error message.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-03-30 17:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-30 17:32 gccgo patch committed: Permit conversion from any uintptr type to unsafe.Pointer Ian Lance Taylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).