summaryrefslogtreecommitdiff
path: root/libgo
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2012-11-06 18:46:38 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2012-11-06 18:46:38 +0000
commitcaeb1102ce1942d2d7bded8a3d97c41927f52bc2 (patch)
tree7d1aeb00c516c09100f51f0c73af4edac9b0c684 /libgo
parentc19ea58f4c22885970a0bfbed4086d53df4418da (diff)
downloadgcc-caeb1102ce1942d2d7bded8a3d97c41927f52bc2.tar.gz
compiler, runtime: Size of int is now 64 bits on x86_64.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193255 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo')
-rw-r--r--libgo/runtime/runtime.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/runtime/runtime.h b/libgo/runtime/runtime.h
index 72e1eb2f8b9..6edeae5f9d9 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. */