Define FFI_SIZEOF_JAVA_RAW for aarch64 ILP32

Like x32, aarch64 ILP32 needs to define FFI_SIZEOF_JAVA_RAW.  This fixes
the java interpreter.
This commit is contained in:
Andreas Schwab
2016-03-16 12:23:07 +01:00
parent 9de24a3ff3
commit d76975dbd2

View File

@@ -29,6 +29,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#ifndef LIBFFI_ASM
#ifdef __ILP32__
#define FFI_SIZEOF_ARG 8
#define FFI_SIZEOF_JAVA_RAW 4
typedef unsigned long long ffi_arg;
typedef signed long long ffi_sarg;
#else