Fix Portable .NET bug with IA-64 pointer size.

* src/types.c (FFI_TYPE_POINTER): Has size 8 on IA64.

From-SVN: r59541
This commit is contained in:
Jim Wilson 2002-11-26 22:24:05 +00:00 committed by Jim Wilson
parent 32e098dd98
commit bc3cf76072
2 changed files with 6 additions and 1 deletions

View 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.

View 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);