Commit bc3cf760 by Jim Wilson Committed by Jim Wilson

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

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

From-SVN: r59541
parent 32e098dd
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.
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment