diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-11-06 18:46:38 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-11-06 18:46:38 +0000 |
commit | 8273ed8077dfb58c5df5b8a5e2f8b65fb52b56be (patch) | |
tree | 7d1aeb00c516c09100f51f0c73af4edac9b0c684 /libgo | |
parent | fb3f38da2a7d45b88c838b3ac55fe40479961790 (diff) | |
download | gcc-8273ed8077dfb58c5df5b8a5e2f8b65fb52b56be.zip gcc-8273ed8077dfb58c5df5b8a5e2f8b65fb52b56be.tar.gz gcc-8273ed8077dfb58c5df5b8a5e2f8b65fb52b56be.tar.bz2 |
compiler, runtime: Size of int is now 64 bits on x86_64.
From-SVN: r193255
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/runtime/runtime.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/runtime/runtime.h b/libgo/runtime/runtime.h index 72e1eb2..6edeae5 100644 --- a/libgo/runtime/runtime.h +++ b/libgo/runtime/runtime.h @@ -41,8 +41,8 @@ typedef double float64 __attribute__ ((mode (DF))); typedef signed int intptr __attribute__ ((mode (pointer))); typedef unsigned int uintptr __attribute__ ((mode (pointer))); -typedef int intgo; // Go's int -typedef unsigned int uintgo; // Go's uint +typedef intptr intgo; // Go's int +typedef uintptr uintgo; // Go's uint /* Defined types. */ |