From: hboehm Date: Thu, 31 Mar 2005 01:22:46 +0000 (+0000) Subject: * src/ia64/ffitarget.h (ffi_arg): Use long long instead of DI. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b7292ee28efc567c12ca479f57027e558b2fa712;p=thirdparty%2Fgcc.git * src/ia64/ffitarget.h (ffi_arg): Use long long instead of DI. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97303 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libffi/ChangeLog b/libffi/ChangeLog index a9fa1dfe098f..8d4d33120e43 100644 --- a/libffi/ChangeLog +++ b/libffi/ChangeLog @@ -1,3 +1,7 @@ +2005-03-30 Hans Boehm + + * src/ia64/ffitarget.h (ffi_arg): Use long long instead of DI. + 2005-03-30 Steve Ellcey * src/ia64/ffitarget.h (ffi_arg) ADD DI attribute. diff --git a/libffi/src/ia64/ffitarget.h b/libffi/src/ia64/ffitarget.h index 51bc768efd04..0d820b3a59e8 100644 --- a/libffi/src/ia64/ffitarget.h +++ b/libffi/src/ia64/ffitarget.h @@ -27,8 +27,8 @@ #define LIBFFI_TARGET_H #ifndef LIBFFI_ASM -typedef unsigned long ffi_arg __attribute__ ((mode (DI))); -typedef signed long ffi_sarg __attribute__ ((mode (DI))); +typedef unsigned long long ffi_arg; +typedef signed long long ffi_sarg; typedef enum ffi_abi { FFI_FIRST_ABI = 0,