Fix typo for darwin targets
This commit is contained in:
@@ -13,3 +13,4 @@ icc128
|
|||||||
x32libtool
|
x32libtool
|
||||||
arm-test-fix
|
arm-test-fix
|
||||||
xcode
|
xcode
|
||||||
|
darwin-missing-semi
|
||||||
|
|||||||
0
.pc/darwin-missing-semi/.timestamp
Normal file
0
.pc/darwin-missing-semi/.timestamp
Normal file
5043
.pc/darwin-missing-semi/ChangeLog
Normal file
5043
.pc/darwin-missing-semi/ChangeLog
Normal file
File diff suppressed because it is too large
Load Diff
1359
.pc/darwin-missing-semi/src/powerpc/ffi_darwin.c
Normal file
1359
.pc/darwin-missing-semi/src/powerpc/ffi_darwin.c
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,7 @@
|
|||||||
|
2012-04-10 Anthony Green <green@moxielogic.com>
|
||||||
|
|
||||||
|
* src/powerpc/ffi_darwin.c (ffi_prep_args): Add missing semicolon.
|
||||||
|
|
||||||
2012-04-06 Anthony Green <green@moxielogic.com>
|
2012-04-06 Anthony Green <green@moxielogic.com>
|
||||||
|
|
||||||
* Makefile.am (EXTRA_DIST): Add new iOS/xcode files.
|
* Makefile.am (EXTRA_DIST): Add new iOS/xcode files.
|
||||||
|
|||||||
25
patches/darwin-missing-semi
Normal file
25
patches/darwin-missing-semi
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
Index: libffi/ChangeLog
|
||||||
|
===================================================================
|
||||||
|
--- libffi.orig/ChangeLog
|
||||||
|
+++ libffi/ChangeLog
|
||||||
|
@@ -1,3 +1,7 @@
|
||||||
|
+2012-04-10 Anthony Green <green@moxielogic.com>
|
||||||
|
+
|
||||||
|
+ * src/powerpc/ffi_darwin.c (ffi_prep_args): Add missing semicolon.
|
||||||
|
+
|
||||||
|
2012-04-06 Anthony Green <green@moxielogic.com>
|
||||||
|
|
||||||
|
* Makefile.am (EXTRA_DIST): Add new iOS/xcode files.
|
||||||
|
Index: libffi/src/powerpc/ffi_darwin.c
|
||||||
|
===================================================================
|
||||||
|
--- libffi.orig/src/powerpc/ffi_darwin.c
|
||||||
|
+++ libffi/src/powerpc/ffi_darwin.c
|
||||||
|
@@ -1235,7 +1235,7 @@ ffi_closure_helper_DARWIN (ffi_closure *
|
||||||
|
if (arg_types[i]->elements[0]->type == FFI_TYPE_DOUBLE)
|
||||||
|
size_al = ALIGN(arg_types[i]->size, 8);
|
||||||
|
# if defined(POWERPC64)
|
||||||
|
- FFI_ASSERT (cif->abi != FFI_DARWIN)
|
||||||
|
+ FFI_ASSERT (cif->abi != FFI_DARWIN);
|
||||||
|
avalue[i] = pgr;
|
||||||
|
pgr += (size_al + 7) / 8;
|
||||||
|
# else
|
||||||
@@ -14,3 +14,4 @@ icc128
|
|||||||
x32libtool
|
x32libtool
|
||||||
arm-test-fix
|
arm-test-fix
|
||||||
xcode
|
xcode
|
||||||
|
darwin-missing-semi
|
||||||
|
|||||||
@@ -1235,7 +1235,7 @@ ffi_closure_helper_DARWIN (ffi_closure *closure, void *rvalue,
|
|||||||
if (arg_types[i]->elements[0]->type == FFI_TYPE_DOUBLE)
|
if (arg_types[i]->elements[0]->type == FFI_TYPE_DOUBLE)
|
||||||
size_al = ALIGN(arg_types[i]->size, 8);
|
size_al = ALIGN(arg_types[i]->size, 8);
|
||||||
# if defined(POWERPC64)
|
# if defined(POWERPC64)
|
||||||
FFI_ASSERT (cif->abi != FFI_DARWIN)
|
FFI_ASSERT (cif->abi != FFI_DARWIN);
|
||||||
avalue[i] = pgr;
|
avalue[i] = pgr;
|
||||||
pgr += (size_al + 7) / 8;
|
pgr += (size_al + 7) / 8;
|
||||||
# else
|
# else
|
||||||
|
|||||||
Reference in New Issue
Block a user