]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* src/ia64/ffitarget.h (ffi_arg): Use long long instead of DI.
authorhboehm <hboehm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 31 Mar 2005 01:22:46 +0000 (01:22 +0000)
committerhboehm <hboehm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 31 Mar 2005 01:22:46 +0000 (01:22 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97303 138bc75d-0d04-0410-961f-82ee72b054a4

libffi/ChangeLog
libffi/src/ia64/ffitarget.h

index a9fa1dfe098fbe246869f55fbb5b052e71b74784..8d4d33120e43e34e50007f185523d74ef6b14057 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-30  Hans Boehm  <Hans.Boehm@hp.com>
+
+       * src/ia64/ffitarget.h (ffi_arg): Use long long instead of DI.
+       
 2005-03-30  Steve Ellcey  <sje@cup.hp.com>
 
        * src/ia64/ffitarget.h (ffi_arg) ADD DI attribute.
index 51bc768efd04f32966ae954ba7ef94ed894323f1..0d820b3a59e88c98b8beb0666c60a30bb99645cf 100644 (file)
@@ -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,