summaryrefslogtreecommitdiff
path: root/patches/aix-fix
diff options
context:
space:
mode:
Diffstat (limited to 'patches/aix-fix')
-rw-r--r--patches/aix-fix33
1 files changed, 0 insertions, 33 deletions
diff --git a/patches/aix-fix b/patches/aix-fix
deleted file mode 100644
index 7f2a090..0000000
--- a/patches/aix-fix
+++ /dev/null
@@ -1,33 +0,0 @@
-Index: libffi/ChangeLog
-===================================================================
---- libffi.orig/ChangeLog
-+++ libffi/ChangeLog
-@@ -37,6 +37,11 @@
- (ffi_call): Silence possibly undefined warning.
- (ffi_closure_helper_SYSV): Declare variable type.
-
-+2012-03-19 chennam <csit@axway.com>
-+
-+ * src/powerpc/ffi_darwin.c (ffi_prep_closure_loc): Fix AIX closure
-+ support.
-+
- 2012-03-13 Kaz Kojima <kkojima@gcc.gnu.org>
-
- * src/sh/ffi.c (ffi_prep_closure_loc): Don't ASSERT ABI test,
-Index: libffi/src/powerpc/ffi_darwin.c
-===================================================================
---- libffi.orig/src/powerpc/ffi_darwin.c
-+++ libffi/src/powerpc/ffi_darwin.c
-@@ -1065,10 +1065,10 @@ ffi_prep_closure_loc (ffi_closure* closu
- closure->cif = cif;
- closure->fun = fun;
- closure->user_data = user_data;
-+ break;
-
- default:
--
-- FFI_ASSERT(0);
-+ return FFI_BAD_ABI;
- break;
- }
- return FFI_OK;