Fix Portable .NET bug with IA-64 pointer size.
authorJim Wilson <wilson@redhat.com>
Tue, 26 Nov 2002 22:24:05 +0000 (22:24 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 26 Nov 2002 22:24:05 +0000 (14:24 -0800)
* src/types.c (FFI_TYPE_POINTER): Has size 8 on IA64.

From-SVN: r59541

libffi/ChangeLog
libffi/src/types.c

index c36ff7f5c2929c53795907e8a2ccb015658436f8..026acd9a50d4bc087b9cec982cbc7e264f358512 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-26  Jim Wilson  <wilson@redhat.com>
+
+       * src/types.c (FFI_TYPE_POINTER): Has size 8 on IA64.
+
 2002-11-15  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * src/s390/sysv.S (.eh_frame section): Adapt to pcrel FDE encoding.
index 8d1241de388ed9b679ff44f34e4c9a119a1d1c25..ae52f11f78c93db8f285cfce93f93137b2c99370 100644 (file)
@@ -42,7 +42,8 @@ FFI_INTEGRAL_TYPEDEF(uint32, 4, 4, FFI_TYPE_UINT32);
 FFI_INTEGRAL_TYPEDEF(sint32, 4, 4, FFI_TYPE_SINT32);
 FFI_INTEGRAL_TYPEDEF(float, 4, 4, FFI_TYPE_FLOAT);
 
-#if defined ALPHA || defined SPARC64 || defined X86_64 || defined S390X
+#if defined ALPHA || defined SPARC64 || defined X86_64 || defined S390X \
+    || defined IA64
 
 FFI_INTEGRAL_TYPEDEF(pointer, 8, 8, FFI_TYPE_POINTER);